From 639819f3d991a63883bc571f9aed13b8e59036d6 Mon Sep 17 00:00:00 2001 From: James Miller Date: Sun, 28 Jul 2013 20:45:23 +1200 Subject: [PATCH] Fix spelling errors --- src/libstd/unstable/atomics.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libstd/unstable/atomics.rs b/src/libstd/unstable/atomics.rs index 14ee6c1fd07dd..6f514ca609dbf 100644 --- a/src/libstd/unstable/atomics.rs +++ b/src/libstd/unstable/atomics.rs @@ -577,8 +577,8 @@ pub unsafe fn atomic_umin(dst: &mut T, val: T, order: Ordering) -> T { * An atomic fence. * * A fence 'A' which has `Release` ordering semantics, synchronizes with a - * fence 'B' with (at least) `Aquire` semantics, if and only if there exists - * atomic operations X and Y, bother operating on some atomic object 'M' such + * fence 'B' with (at least) `Acquire` semantics, if and only if there exists + * atomic operations X and Y, both operating on some atomic object 'M' such * that A is sequenced before X, Y is synchronized before B and Y obsevers * the change to M. This provides a happens-before dependence between A and B. *