aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-nrf/src/lib.rs')
-rw-r--r--embassy-nrf/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-nrf/src/lib.rs b/embassy-nrf/src/lib.rs
index e0847a312..7c26a6184 100644
--- a/embassy-nrf/src/lib.rs
+++ b/embassy-nrf/src/lib.rs
@@ -207,7 +207,7 @@ mod chip;
207/// Macro to bind interrupts to handlers. 207/// Macro to bind interrupts to handlers.
208/// 208///
209/// This defines the right interrupt handlers, and creates a unit struct (like `struct Irqs;`) 209/// This defines the right interrupt handlers, and creates a unit struct (like `struct Irqs;`)
210/// and implements the right [`Binding`]s for it. You can pass this struct to drivers to 210/// and implements the right [crate::interrupt::typelevel::Binding]s for it. You can pass this struct to drivers to
211/// prove at compile-time that the right interrupts have been bound. 211/// prove at compile-time that the right interrupts have been bound.
212/// 212///
213/// Example of how to bind one interrupt: 213/// Example of how to bind one interrupt: