Skip to content

Commit 2d1eb19

Browse files
committed
auto merge of #8292 : thestinger/rust/fix_loop_warning, r=brson
2 parents d89ff7e + c327835 commit 2d1eb19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/middle/check_loop.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ pub fn check_crate(tcx: ty::ctxt, crate: &Crate) {
5252
}
5353
expr_again(_) => {
5454
if !cx.in_loop {
55-
tcx.sess.span_err(e.span, "`again` outside of loop");
55+
tcx.sess.span_err(e.span, "`loop` outside of loop");
5656
}
5757
}
5858
expr_ret(oe) => {

0 commit comments

Comments
 (0)