Skip to content

Commit b7b07f8

Browse files
authored
Update atomic.rs
docs: typo "aditionally" changed to "additionally"
1 parent 031fd03 commit b7b07f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

embedded-hal-bus/src/i2c/atomic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use crate::util::AtomicCell;
55
/// Atomics-based shared bus [`I2c`] implementation.
66
///
77
/// Sharing is implemented with a [`AtomicDevice`], which consists of an `UnsafeCell` and an `AtomicBool` "locked" flag.
8-
/// This means it has low overhead, like [`RefCellDevice`](crate::i2c::RefCellDevice). Aditionally, it is `Send`,
8+
/// This means it has low overhead, like [`RefCellDevice`](crate::i2c::RefCellDevice). Additionally, it is `Send`,
99
/// which allows sharing a single bus across multiple threads (interrupt priority level), like [`CriticalSectionDevice`](crate::i2c::CriticalSectionDevice),
1010
/// while not using critical sections and therefore impacting real-time performance less.
1111
///

0 commit comments

Comments
 (0)