diff --git a/conc/src/atomic.rs b/conc/src/atomic.rs index c7d846785441e44cb51918c873c0d43dae3342e3..a5bcdff4dd600e59be3542c988c3e19a84b603eb 100644 --- a/conc/src/atomic.rs +++ b/conc/src/atomic.rs @@ -15,7 +15,7 @@ use guard::Guard; /// `std::sync::AtomicPtr` in that it allows references to the inner data without the ABA problem /// or any variant thereof. /// -/// It conveniently wraps this crates API in a seemless manner. +/// It conveniently wraps this crate's API in a seamless manner. pub struct Atomic { /// The inner atomic pointer. inner: AtomicPtr,