rustdoc: Remove usage of fmt!

This commit is contained in:
Alex Crichton
2013-09-27 23:22:34 -07:00
parent 4d47601a7e
commit a7f19f36be
6 changed files with 28 additions and 28 deletions

View File

@@ -205,7 +205,7 @@ fn mkdir(path: &Path) {
do io::io_error::cond.trap(|err| {
error2!("Couldn't create directory `{}`: {}",
path.to_str(), err.desc);
fail!()
fail2!()
}).inside {
if !path.is_dir() {
file::mkdir(path);