aboutsummaryrefslogtreecommitdiff
path: root/macros/src
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2021-08-31 19:53:55 +0200
committerJorge Aparicio <jorge@japaric.io>2021-08-31 19:53:55 +0200
commit38bd29779eac57e6ad7961cd57702434a348e74c (patch)
treefd3c79a01301090145b9e607485b712adc04979f /macros/src
parent1a49d67490e3c1b9cb640d459890f4c880a52096 (diff)
style fix
Diffstat (limited to 'macros/src')
-rw-r--r--macros/src/codegen/pre_init.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/src/codegen/pre_init.rs b/macros/src/codegen/pre_init.rs
index 626d17a..69f16fe 100644
--- a/macros/src/codegen/pre_init.rs
+++ b/macros/src/codegen/pre_init.rs
@@ -32,7 +32,7 @@ pub fn codegen(app: &App, analysis: &Analysis, extra: &Extra) -> Vec<TokenStream
let nvic_prio_bits = quote!(#device::NVIC_PRIO_BITS);
// check that all dispatchers exists in the `Interrupt` enumeration regardless of whether
- // they are used or not
+ // they are used or not
let interrupt = util::interrupt_ident();
for name in app.args.extern_interrupts.keys() {
stmts.push(quote!(let _ = #rt_err::#interrupt::#name;));