about summary refs log tree commit diff
path: root/src/rustdoc
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2012-07-09 14:37:48 -0700
committerGraydon Hoare <graydon@mozilla.com>2012-07-09 14:37:48 -0700
commitc26d02557e77ef02bf897563a38867ff0da3fc2a (patch)
tree4f37e678d3b138386b7b9549081f266a12259d42 /src/rustdoc
parent9afc8be04b7fb2927fa33d41f8618ca7fb9285bb (diff)
downloadrust-c26d02557e77ef02bf897563a38867ff0da3fc2a.tar.gz
rust-c26d02557e77ef02bf897563a38867ff0da3fc2a.zip
Switch 'cont' to 'again' everywhere. Close #2229.
Diffstat (limited to 'src/rustdoc')
-rw-r--r--src/rustdoc/reexport_pass.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rustdoc/reexport_pass.rs b/src/rustdoc/reexport_pass.rs
index 354035b6f56..8351d6a3146 100644
--- a/src/rustdoc/reexport_pass.rs
+++ b/src/rustdoc/reexport_pass.rs
@@ -184,7 +184,7 @@ fn build_reexport_path_map(srv: astsrv::srv, -def_map: def_map) -> path_map {
 
             let mut reexportdocs = ~[];
             for defs.each |def| {
-                if !def.reexp { cont; }
+                if !def.reexp { again; }
                 alt def_map.find(def.id) {
                   some(itemtag) {
                     reexportdocs += ~[(*name, itemtag)];