about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorBoris Egorov <jightuse@gmail.com>2014-04-07 19:01:10 +0700
committerAlex Crichton <alex@alexcrichton.com>2014-04-08 00:03:12 -0700
commit00cbda2d0af81a054ba61bd237f98e033ba7a2fa (patch)
tree521bae1c4c0dfea6e9691f58c7caec270c0afea5 /src/test
parentde2567dec9cfceec59db5d6d17df09c05f70d5a1 (diff)
Improve searching for XXX in tidy script (#3303)
Few places where previous version of tidy script cannot find XXX:
* inside one-line comment preceding by a few spaces;
* inside multiline comments (now it finds it if multiline comment starts
on the same line with XXX).

Change occurences of XXX found by new tidy script.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/bench/shootout-threadring.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/bench/shootout-threadring.rs b/src/test/bench/shootout-threadring.rs
index 7ee294b8e63..72d91ac645e 100644
--- a/src/test/bench/shootout-threadring.rs
+++ b/src/test/bench/shootout-threadring.rs
@@ -15,7 +15,7 @@ use std::os;
 fn start(n_tasks: int, token: int) {
     let (tx, mut rx) = channel();
     tx.send(token);
-    //  XXX could not get this to work with a range closure
+    //  FIXME could not get this to work with a range closure
     let mut i = 2;
     while i <= n_tasks {
         let (tx, next_rx) = channel();