diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-09-07 15:32:04 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-09-07 17:39:03 -0700 |
| commit | 2810ea9a687df32064dc3fa7db48f52e27d39ed5 (patch) | |
| tree | 4fb386e360cc050a7a05afe564cec58fe65a245a /src/libsyntax/parse/comments.rs | |
| parent | 073df63c72faed7a773cb9ad0ad5e27edcb4f9f1 (diff) | |
| download | rust-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.rs | 2 |
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 { |
