about summary refs log tree commit diff
path: root/src/libsyntax/parse/comments.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-09-07 15:32:04 -0700
committerBrian Anderson <banderson@mozilla.com>2012-09-07 17:39:03 -0700
commit2810ea9a687df32064dc3fa7db48f52e27d39ed5 (patch)
tree4fb386e360cc050a7a05afe564cec58fe65a245a /src/libsyntax/parse/comments.rs
parent073df63c72faed7a773cb9ad0ad5e27edcb4f9f1 (diff)
downloadrust-2810ea9a687df32064dc3fa7db48f52e27d39ed5.tar.gz
rust-2810ea9a687df32064dc3fa7db48f52e27d39ed5.zip
Convert 'again' to 'loop'. Remove 'again' keyword
Diffstat (limited to 'src/libsyntax/parse/comments.rs')
-rw-r--r--src/libsyntax/parse/comments.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/comments.rs b/src/libsyntax/parse/comments.rs
index 2d000074936..b85262cb79d 100644
--- a/src/libsyntax/parse/comments.rs
+++ b/src/libsyntax/parse/comments.rs
@@ -55,7 +55,7 @@ fn strip_doc_comment_decoration(comment: ~str) -> ~str {
         let mut i = max.get_default(uint::max_value);
         for lines.each |line| {
             if line.trim().is_empty() {
-                again;
+                loop;
             }
             for line.each_chari |j, c| {
                 if j >= i {