about summary refs log tree commit diff
path: root/src/libcore/task
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2013-01-29 16:18:59 -0800
committerTim Chevalier <chevalier@alum.wellesley.edu>2013-01-29 19:26:55 -0800
commit0aef28dd6d6d61f8cbdebb0e07c41279bf48bd0f (patch)
treea1c0dc3e7ab4a2231a590132750d7026d100ba35 /src/libcore/task
parentad3506bd1e6d0b3fe686dfc5ae26010a10af6e05 (diff)
downloadrust-0aef28dd6d6d61f8cbdebb0e07c41279bf48bd0f.tar.gz
rust-0aef28dd6d6d61f8cbdebb0e07c41279bf48bd0f.zip
De-capitalize "note" to get rid of spurious tidy warnings
Diffstat (limited to 'src/libcore/task')
-rw-r--r--src/libcore/task/local_data_priv.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/task/local_data_priv.rs b/src/libcore/task/local_data_priv.rs
index e6aa5b35bb8..05019c0df84 100644
--- a/src/libcore/task/local_data_priv.rs
+++ b/src/libcore/task/local_data_priv.rs
@@ -59,7 +59,7 @@ extern fn cleanup_task_local_map(map_ptr: *libc::c_void) {
 unsafe fn get_task_local_map(task: *rust_task) -> TaskLocalMap {
 
     // Relies on the runtime initialising the pointer to null.
-    // NOTE: The map's box lives in TLS invisibly referenced once. Each time
+    // Note: The map's box lives in TLS invisibly referenced once. Each time
     // we retrieve it for get/set, we make another reference, which get/set
     // drop when they finish. No "re-storing after modifying" is needed.
     let map_ptr = rt::rust_get_task_local_data(task);