about summary refs log tree commit diff
path: root/src/libsync/sync/mutex.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libsync/sync/mutex.rs')
-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.