From 55bbe5dad1237b0761e21cec0c8472a6f14bc45d Mon Sep 17 00:00:00 2001 From: Cooper Paul EdenDay Date: Mon, 7 Aug 2017 00:54:38 -0400 Subject: [PATCH 1/2] Fixed typo in `atomic.rs`. Signed-off-by: Cooper Paul EdenDay --- conc/src/atomic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conc/src/atomic.rs b/conc/src/atomic.rs index c7d8467..2709dd5 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 seemless manner. pub struct Atomic { /// The inner atomic pointer. inner: AtomicPtr, -- GitLab From 425992fd918f8a9485e79ffcd813aa8cac6868d4 Mon Sep 17 00:00:00 2001 From: Cooper Paul EdenDay Date: Mon, 7 Aug 2017 01:07:46 -0400 Subject: [PATCH 2/2] Fixed last commit. Signed-off-by: Cooper Paul EdenDay --- conc/src/atomic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conc/src/atomic.rs b/conc/src/atomic.rs index 2709dd5..a5bcdff 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 crate's 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, -- GitLab