2011-04-11 Ivan Maidanski <ivmai@mail.ru> (really Jim Meyering)
authorivmai <ivmai>
Mon, 11 Apr 2011 19:55:41 +0000 (19:55 +0000)
committerIvan Maidanski <ivmai@mail.ru>
Mon, 25 Jul 2011 12:03:26 +0000 (16:03 +0400)
* doc/README.txt: Remove doubled words in comments.

ChangeLog
doc/README.txt

index 0c8838a..840b5fe 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-04-11  Ivan Maidanski  <ivmai@mail.ru> (really Jim Meyering)
+
+       * doc/README.txt: Remove doubled words in comments.
+
 2011-03-18  Ivan Maidanski  <ivmai@mail.ru>
 
        * src/atomic_ops/sysdeps/gcc/arm.h: Test for all the known pre-v6
index d66905d..989a70f 100644 (file)
@@ -98,8 +98,8 @@ int compare_and_swap(volatile AO_t * addr, AO_t old_val, AO_t new_val)
         succeeded and *addr was updated.
 AO_TS_VAL_t test_and_set(volatile AO_TS_t * addr)
         Atomically read the binary value at *addr, and set it.  AO_TS_VAL_t
-        is an enumeration type which includes the two values AO_TS_SET and
-        and AO_TS_CLEAR.  An AO_TS_t location is capable of holding an
+        is an enumeration type which includes two values AO_TS_SET and
+        AO_TS_CLEAR.  An AO_TS_t location is capable of holding an
         AO_TS_VAL_t, but may be much larger, as dictated by hardware
         constraints.  Test_and_set logically sets the value to AO_TS_SET.
         It may be reset to AO_TS_CLEAR with the AO_CLEAR(AO_TS_t *) macro.