about summary refs log tree commit diff
path: root/src/libstd/sys
diff options
context:
space:
mode:
authorJoseph Crail <jbcrail@gmail.com>2015-01-06 20:53:18 -0500
committerJoseph Crail <jbcrail@gmail.com>2015-01-06 20:53:18 -0500
commite3b7fedc20fcfe54e0ddb285fc6e6c6e862b3279 (patch)
treeca1ece110a6f8dc31f5c30b595687829c08f5e82 /src/libstd/sys
parentea6f65c5f1a3f84e010d2cef02a0160804e9567a (diff)
downloadrust-e3b7fedc20fcfe54e0ddb285fc6e6c6e862b3279.tar.gz
rust-e3b7fedc20fcfe54e0ddb285fc6e6c6e862b3279.zip
Fix misspelled comments.
I cleaned up comments prior to the 1.0 alpha release.
Diffstat (limited to 'src/libstd/sys')
-rw-r--r--src/libstd/sys/windows/thread_local.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/windows/thread_local.rs b/src/libstd/sys/windows/thread_local.rs
index b96e26c7a86..d371023f218 100644
--- a/src/libstd/sys/windows/thread_local.rs
+++ b/src/libstd/sys/windows/thread_local.rs
@@ -191,7 +191,7 @@ unsafe fn unregister_dtor(key: Key) -> bool {
 //
 // The callback specified receives a number of parameters from... someone!
 // (the kernel? the runtime? I'm not qute sure!) There are a few events that
-// this gets invoked for, but we're currentl only interested on when a
+// this gets invoked for, but we're currently only interested on when a
 // thread or a process "detaches" (exits). The process part happens for the
 // last thread and the thread part happens for any normal thread.
 //