aboutsummaryrefslogtreecommitdiff
path: root/embassy-nrf/src/lib.rs
diff options
context:
space:
mode:
authorRobin Mueller <[email protected]>2025-09-23 11:21:57 +0200
committerRobin Mueller <[email protected]>2025-09-23 13:44:06 +0200
commit9ae4edfa73d33f6fe66eb70a896b14267f6cdec2 (patch)
tree36acda02d421b05b8633c2c8dfd48efaf44e8e48 /embassy-nrf/src/lib.rs
parentf3f29cdd531f5329d797c29af66c4aac1acd7574 (diff)
doc fixes
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: