Skip to content

Commit 7dbc5ae

Browse files
committed
Get rid of some NOTEs.
1 parent fd01031 commit 7dbc5ae

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/compiletest/compiletest.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
#[crate_type = "bin"];
1212

1313
#[allow(non_camel_case_types)];
14-
#[allow(unrecognized_lint)]; // NOTE: remove after snapshot
1514
#[deny(warnings)];
1615

1716
extern mod extra;

src/librustc/middle/cfg/construct.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ impl CFGBuilder {
225225
// Note that `break` and `loop` statements
226226
// may cause additional edges.
227227

228-
// NOTE: Is the condition considered part of the loop?
228+
// Is the condition considered part of the loop?
229229
let loopback = self.add_dummy_node([pred]); // 1
230230
let cond_exit = self.expr(cond, loopback); // 2
231231
let expr_exit = self.add_node(expr.id, [cond_exit]); // 3

src/libstd/rt/io/flate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
//! Some various other I/O types
1212
13-
// NOTE: These ultimately belong somewhere else
13+
// FIXME(#3660): should move to libextra
1414

1515
use prelude::*;
1616
use super::*;

0 commit comments

Comments
 (0)