about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/libcore/task/local_data_priv.rs2
-rw-r--r--src/libstd/getopts.rs2
-rw-r--r--src/libsyntax/ext/fmt.rs2
3 files changed, 3 insertions, 3 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);
diff --git a/src/libstd/getopts.rs b/src/libstd/getopts.rs
index a51cc253755..f4ebed7da96 100644
--- a/src/libstd/getopts.rs
+++ b/src/libstd/getopts.rs
@@ -1295,7 +1295,7 @@ mod tests {
         let sample_args = ~[~"-k", ~"15", ~"--apple", ~"1", ~"k",
                             ~"-p", ~"16", ~"l", ~"35"];
 
-        // NOTE: we should sort before comparing
+        // FIXME #4681: sort options here?
         assert getopts(sample_args, short)
             == groups::getopts(sample_args, verbose);
     }
diff --git a/src/libsyntax/ext/fmt.rs b/src/libsyntax/ext/fmt.rs
index 845d26f77cb..d967912221d 100644
--- a/src/libsyntax/ext/fmt.rs
+++ b/src/libsyntax/ext/fmt.rs
@@ -50,7 +50,7 @@ pub fn expand_syntax_ext(cx: ext_ctxt, sp: span, tts: ~[ast::token_tree])
 // FIXME (#2249): A lot of these functions for producing expressions can
 // probably be factored out in common with other code that builds
 // expressions.  Also: Cleanup the naming of these functions.
-// NOTE: Moved many of the common ones to build.rs --kevina
+// Note: Moved many of the common ones to build.rs --kevina
 fn pieces_to_expr(cx: ext_ctxt, sp: span,
                   pieces: ~[Piece], args: ~[@ast::expr])
    -> @ast::expr {