summary refs log tree commit diff
path: root/src/libstd/thread_local
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2014-12-18 15:10:37 -0800
committerHuon Wilson <dbau.pp+github@gmail.com>2014-12-23 16:13:15 +1100
commit832c3e3cd725d85963c70cfdce26b13a5c0d508f (patch)
tree45db7a4f4a40c744805f2037e3185889335fcf7c /src/libstd/thread_local
parent62fb41c32bd97c4e9bc286a1db5d7126a06b8b91 (diff)
downloadrust-832c3e3cd725d85963c70cfdce26b13a5c0d508f.tar.gz
rust-832c3e3cd725d85963c70cfdce26b13a5c0d508f.zip
Fix some spelling errors.
Diffstat (limited to 'src/libstd/thread_local')
-rw-r--r--src/libstd/thread_local/scoped.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/thread_local/scoped.rs b/src/libstd/thread_local/scoped.rs
index 96f09190c2f..643a0f55e74 100644
--- a/src/libstd/thread_local/scoped.rs
+++ b/src/libstd/thread_local/scoped.rs
@@ -17,7 +17,7 @@
 //!
 //! There are no restrictions on what types can be placed into a scoped
 //! variable, but all scoped variables are initialized to the equivalent of
-//! null. Scoped thread local stor is useful when a value is present for a known
+//! null. Scoped thread local storage is useful when a value is present for a known
 //! period of time and it is not required to relinquish ownership of the
 //! contents.
 //!