about summary refs log tree commit diff
path: root/src/libsync/lock.rs
diff options
context:
space:
mode:
authorJoseph Crail <jbcrail@gmail.com>2014-06-09 00:00:52 -0400
committerJoseph Crail <jbcrail@gmail.com>2014-06-10 11:24:17 -0400
commitc2c99463720e758d5aa0bdcea19dc5b3dd67292c (patch)
treeb6744e6d280594324f1f22fe8b76ccd03f7eedb0 /src/libsync/lock.rs
parent0ee6a8e8a564ec0134ebdc0869fab5e4bb28024c (diff)
downloadrust-c2c99463720e758d5aa0bdcea19dc5b3dd67292c.tar.gz
rust-c2c99463720e758d5aa0bdcea19dc5b3dd67292c.zip
Fix more misspelled comments and strings.
Diffstat (limited to 'src/libsync/lock.rs')
-rw-r--r--src/libsync/lock.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsync/lock.rs b/src/libsync/lock.rs
index 1b620185610..723d0d60867 100644
--- a/src/libsync/lock.rs
+++ b/src/libsync/lock.rs
@@ -513,7 +513,7 @@ mod tests {
     #[test]
     fn test_mutex_arc_nested() {
         // Tests nested mutexes and access
-        // to underlaying data.
+        // to underlying data.
         let arc = Arc::new(Mutex::new(1));
         let arc2 = Arc::new(Mutex::new(arc));
         task::spawn(proc() {