diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2013-01-29 16:18:59 -0800 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2013-01-29 19:26:55 -0800 |
| commit | 0aef28dd6d6d61f8cbdebb0e07c41279bf48bd0f (patch) | |
| tree | a1c0dc3e7ab4a2231a590132750d7026d100ba35 /src/libcore/task | |
| parent | ad3506bd1e6d0b3fe686dfc5ae26010a10af6e05 (diff) | |
| download | rust-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.rs | 2 |
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); |
