rustdoc: Rename util mod to par

This commit is contained in:
Brian Anderson
2012-02-26 23:10:12 -08:00
parent c15127fe3e
commit 3bfa457039
11 changed files with 30 additions and 30 deletions

View File

@@ -228,7 +228,7 @@ fn write_sig(ctxt: ctxt, sig: option<str>) {
fn code_block_indent(s: str) -> str {
let lines = str::lines_any(s);
let indented = util::anymap(lines, { |line| #fmt(" %s", line) });
let indented = par::anymap(lines, { |line| #fmt(" %s", line) });
str::connect(indented, "\n")
}