about summary refs log tree commit diff
path: root/src/libstd/sys
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-01-07 15:35:30 +0000
committerbors <bors@rust-lang.org>2015-01-07 15:35:30 +0000
commitc0216c8945e7549f55d13302cc0a8ad41b2c2060 (patch)
treeed9258d084dccaaca1336b560f5a369e2015a9d9 /src/libstd/sys
parent7377c0b1a91f48c95bf6d0b1b179f4fbada70869 (diff)
parente3b7fedc20fcfe54e0ddb285fc6e6c6e862b3279 (diff)
downloadrust-c0216c8945e7549f55d13302cc0a8ad41b2c2060.tar.gz
rust-c0216c8945e7549f55d13302cc0a8ad41b2c2060.zip
Merge pull request #20674 from jbcrail/fix-misspelled-comments
Fix misspelled comments.

Reviewed-by: steveklabnik
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.
 //