We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3ed9a9 commit 56c87ffCopy full SHA for 56c87ff
src/libstd/rt/io/file.rs
@@ -603,7 +603,7 @@ trait DirectoryInfo : FileSystemInfo {
603
Some(_) => {
604
io_error::cond.raise(IoError {
605
kind: PathAlreadyExists,
606
- desc: "path already exists",
+ desc: "Path already exists",
607
detail:
608
Some(fmt!("%s already exists; can't mkdir it", self.get_path().to_str()))
609
})
@@ -642,7 +642,7 @@ trait DirectoryInfo : FileSystemInfo {
642
None =>
643
644
kind: PathDoesntExist,
645
- desc: "path doesn't exist",
+ desc: "Path doesn't exist",
646
detail: Some(fmt!("%s doesn't exist; can't rmdir it", self.get_path().to_str()))
647
648
}
0 commit comments