From 7b2741264d06138a5bb1bd196a58743554aa5d6e Mon Sep 17 00:00:00 2001 From: Emil Fresk Date: Wed, 7 Oct 2020 11:04:16 +0200 Subject: [PATCH] Fixed erroneous tag --- book/en/src/internals/interrupt-configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/en/src/internals/interrupt-configuration.md b/book/en/src/internals/interrupt-configuration.md index 278707c0ad..b51735c85a 100644 --- a/book/en/src/internals/interrupt-configuration.md +++ b/book/en/src/internals/interrupt-configuration.md @@ -24,7 +24,7 @@ const APP: () = { // .. user code .. } - #[interrupt(binds = UART0, priority = 2)] + #[task(binds = UART0, priority = 2)] fn foo(c: foo::Context) { // .. user code .. }