about summary refs log tree commit diff
path: root/src/libsync/sync
diff options
context:
space:
mode:
authorKang Seonghoon <public+git@mearie.org>2014-03-06 16:35:12 +0900
committerKang Seonghoon <public+git@mearie.org>2014-03-06 20:19:14 +0900
commit1c52c81846246e135557f1aa6db5bef4140c8717 (patch)
tree01f1b6cf88fc45a578a113935b833be52c0c790c /src/libsync/sync
parent14c620719c06fcb3222b95d0d1505306506efb86 (diff)
fix typos with with repeated words, just like this sentence.
Diffstat (limited to 'src/libsync/sync')
-rw-r--r--src/libsync/sync/mutex.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsync/sync/mutex.rs b/src/libsync/sync/mutex.rs
index 9938f20927a..ee044356aff 100644
--- a/src/libsync/sync/mutex.rs
+++ b/src/libsync/sync/mutex.rs
@@ -53,7 +53,7 @@
 // leading to fairly decent performance for both native threads and green
 // threads on various workloads (uncontended and contended).
 //
-// The crux of this implementation is an atomic work which is CAS'd on many many
+// The crux of this implementation is an atomic work which is CAS'd on many
 // times in order to manage a few flags about who's blocking where and whether
 // it's locked or not.