summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivmai <ivmai>2011-04-11 19:55:41 +0000
committerIvan Maidanski <ivmai@mail.ru>2011-07-25 16:03:26 +0400
commit6d5de667fea0fbc95614d04e67477b0617f38476 (patch)
tree1327316c4ca022d389c5c40b78892f555244553b
parent34af2ded91bd02169909c332f11f08e379478c5c (diff)
downloadlibatomic_ops-6d5de667fea0fbc95614d04e67477b0617f38476.tar.gz
2011-04-11 Ivan Maidanski <ivmai@mail.ru> (really Jim Meyering)
* doc/README.txt: Remove doubled words in comments.
-rw-r--r--ChangeLog4
-rw-r--r--doc/README.txt4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0c8838a..840b5fe 100644
--- 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
diff --git a/doc/README.txt b/doc/README.txt
index d66905d..989a70f 100644
--- a/doc/README.txt
+++ b/doc/README.txt
@@ -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.