about summary refs log tree commit diff
path: root/src/libstd/condition.rs
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2013-12-15 16:26:09 +1100
committerHuon Wilson <dbau.pp+github@gmail.com>2013-12-15 16:26:09 +1100
commit55534100ce175143e2c7223100b825bf130e750b (patch)
treec14401522be20bd5f2b9b3dbfe741d5dc09ad9f9 /src/libstd/condition.rs
parent8f6df87c1d876895a7e313728b43d9710ae682bb (diff)
downloadrust-55534100ce175143e2c7223100b825bf130e750b.tar.gz
rust-55534100ce175143e2c7223100b825bf130e750b.zip
std: fix spelling in docs.
Diffstat (limited to 'src/libstd/condition.rs')
-rw-r--r--src/libstd/condition.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/condition.rs b/src/libstd/condition.rs
index df5154123f2..1a4e9226ee8 100644
--- a/src/libstd/condition.rs
+++ b/src/libstd/condition.rs
@@ -81,7 +81,7 @@ pub struct Handler<T, U> {
 /// the condition (useful for debugging).
 ///
 /// This struct should never be created directly, but rather only through the
-/// `condition!` macro provided to all libraries using libstd.
+/// `condition!` macro provided to all libraries using `std`.
 pub struct Condition<T, U> {
     /// Name of the condition handler
     name: &'static str,