about summary refs log tree commit diff
path: root/src/libsync
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2014-02-17 22:53:45 +1100
committerHuon Wilson <dbau.pp+github@gmail.com>2014-02-18 08:05:35 +1100
commit6555b04dd2fbcd18c8fa8beb2bebc4b81febc6b0 (patch)
tree67b79727570ea14a3b0520b5562aa9e1fba154f9 /src/libsync
parentc8489069b43191c5298f17430933b3b88fb79c3c (diff)
downloadrust-6555b04dd2fbcd18c8fa8beb2bebc4b81febc6b0.tar.gz
rust-6555b04dd2fbcd18c8fa8beb2bebc4b81febc6b0.zip
Spellcheck library docs.
Diffstat (limited to 'src/libsync')
-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 9ca2f1fd7ff..923f12ed1d1 100644
--- a/src/libsync/sync/mutex.rs
+++ b/src/libsync/sync/mutex.rs
@@ -460,7 +460,7 @@ impl Mutex {
 
     /// Acquires a mutex, blocking the current task until it is able to do so.
     ///
-    /// This function will block the local task until it is availble to acquire
+    /// This function will block the local task until it is available to acquire
     /// the mutex. Upon returning, the task is the only task with the mutex
     /// held. An RAII guard is returned to allow scoped unlock of the lock. When
     /// the guard goes out of scope, the mutex will be unlocked.