diff options
| author | Boris Egorov <jightuse@gmail.com> | 2014-04-07 19:01:10 +0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-04-08 00:03:12 -0700 |
| commit | 00cbda2d0af81a054ba61bd237f98e033ba7a2fa (patch) | |
| tree | 521bae1c4c0dfea6e9691f58c7caec270c0afea5 /src/libstd/rt | |
| parent | de2567dec9cfceec59db5d6d17df09c05f70d5a1 (diff) | |
| download | rust-00cbda2d0af81a054ba61bd237f98e033ba7a2fa.tar.gz rust-00cbda2d0af81a054ba61bd237f98e033ba7a2fa.zip | |
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/libstd/rt')
| -rw-r--r-- | src/libstd/rt/local_ptr.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/rt/local_ptr.rs b/src/libstd/rt/local_ptr.rs index e486932ac3c..e3f64f40c0d 100644 --- a/src/libstd/rt/local_ptr.rs +++ b/src/libstd/rt/local_ptr.rs @@ -12,7 +12,7 @@ //! //! The runtime will use this for storing ~Task. //! -//! XXX: Add runtime checks for usage of inconsistent pointer types. +//! FIXME: Add runtime checks for usage of inconsistent pointer types. //! and for overwriting an existing pointer. #![allow(dead_code)] |
