diff --git a/src/bin/rustfmt.rs b/src/bin/rustfmt.rs index 3e31c4b5f231..1bea4430c305 100644 --- a/src/bin/rustfmt.rs +++ b/src/bin/rustfmt.rs @@ -51,9 +51,7 @@ fn lookup_project_file(input_file: &Path) -> io::Result { input_file.to_path_buf() }; - // FIXME: We should canonize path to properly handle its parents, - // but `canonicalize` function is unstable now (recently added API) - // current = try!(fs::canonicalize(current)); + current = try!(fs::canonicalize(current)); loop { let config_file = current.join("rustfmt.toml");