diff options
| author | Brian Anderson <banderson@mozilla.com> | 2012-02-26 23:10:12 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2012-02-26 23:10:12 -0800 |
| commit | 3bfa4570393977ea01a216bd97350fdf1cbf2fdf (patch) | |
| tree | 28033cdcaeeef88be9ee2ae7577bedcb5a72fb9a /src/rustdoc/fold.rs | |
| parent | c15127fe3ece95eacc9839458710d6e72bd014af (diff) | |
| download | rust-3bfa4570393977ea01a216bd97350fdf1cbf2fdf.tar.gz rust-3bfa4570393977ea01a216bd97350fdf1cbf2fdf.zip | |
rustdoc: Rename util mod to par
Diffstat (limited to 'src/rustdoc/fold.rs')
| -rw-r--r-- | src/rustdoc/fold.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/rustdoc/fold.rs b/src/rustdoc/fold.rs index 432597fe43f..6be24de0057 100644 --- a/src/rustdoc/fold.rs +++ b/src/rustdoc/fold.rs @@ -153,7 +153,7 @@ fn default_any_fold_mod<T:send>( ) -> doc::moddoc { { item: fold.fold_item(fold, doc.item), - items: util::anymap(doc.items) {|itemtag| + items: par::anymap(doc.items) {|itemtag| fold_itemtag(fold, itemtag) } with doc @@ -166,7 +166,7 @@ fn default_seq_fold_mod<T>( ) -> doc::moddoc { { item: fold.fold_item(fold, doc.item), - items: util::seqmap(doc.items) {|itemtag| + items: par::seqmap(doc.items) {|itemtag| fold_itemtag(fold, itemtag) } with doc @@ -179,7 +179,7 @@ fn default_par_fold_mod<T:send>( ) -> doc::moddoc { { item: fold.fold_item(fold, doc.item), - items: util::parmap(doc.items) {|itemtag| + items: par::parmap(doc.items) {|itemtag| fold_itemtag(fold, itemtag) } with doc @@ -192,7 +192,7 @@ fn default_any_fold_nmod<T:send>( ) -> doc::nmoddoc { { item: fold.fold_item(fold, doc.item), - fns: util::anymap(doc.fns) {|fndoc| + fns: par::anymap(doc.fns) {|fndoc| fold.fold_fn(fold, fndoc) } with doc @@ -205,7 +205,7 @@ fn default_seq_fold_nmod<T>( ) -> doc::nmoddoc { { item: fold.fold_item(fold, doc.item), - fns: util::seqmap(doc.fns) {|fndoc| + fns: par::seqmap(doc.fns) {|fndoc| fold.fold_fn(fold, fndoc) } with doc @@ -218,7 +218,7 @@ fn default_par_fold_nmod<T:send>( ) -> doc::nmoddoc { { item: fold.fold_item(fold, doc.item), - fns: util::parmap(doc.fns) {|fndoc| + fns: par::parmap(doc.fns) {|fndoc| fold.fold_fn(fold, fndoc) } with doc |
