From b7b07f8f1dbb68e3656f43d423827941abcc20ac Mon Sep 17 00:00:00 2001 From: Nathaniel Thomas Date: Fri, 22 Aug 2025 12:31:16 -0500 Subject: [PATCH] Update atomic.rs docs: typo "aditionally" changed to "additionally" --- embedded-hal-bus/src/i2c/atomic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embedded-hal-bus/src/i2c/atomic.rs b/embedded-hal-bus/src/i2c/atomic.rs index 8443e461..b47b8c5e 100644 --- a/embedded-hal-bus/src/i2c/atomic.rs +++ b/embedded-hal-bus/src/i2c/atomic.rs @@ -5,7 +5,7 @@ use crate::util::AtomicCell; /// Atomics-based shared bus [`I2c`] implementation. /// /// Sharing is implemented with a [`AtomicDevice`], which consists of an `UnsafeCell` and an `AtomicBool` "locked" flag. -/// This means it has low overhead, like [`RefCellDevice`](crate::i2c::RefCellDevice). Aditionally, it is `Send`, +/// This means it has low overhead, like [`RefCellDevice`](crate::i2c::RefCellDevice). Additionally, it is `Send`, /// which allows sharing a single bus across multiple threads (interrupt priority level), like [`CriticalSectionDevice`](crate::i2c::CriticalSectionDevice), /// while not using critical sections and therefore impacting real-time performance less. ///