X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Flibstd%2Fpath%2Fposix.rs;h=100876271b38f6216e2447db3719ca8d8c316a9b;hb=87c3ee861ec488827044e07d5d0cd7c8508c681f;hp=422e2cedc48f78e6b9e2f769d01ef2bfdb278749;hpb=e4b81d25122b0ff230182375d09300d5403b1750;p=rust.git diff --git a/src/libstd/path/posix.rs b/src/libstd/path/posix.rs index 422e2cedc48..100876271b3 100644 --- a/src/libstd/path/posix.rs +++ b/src/libstd/path/posix.rs @@ -57,9 +57,10 @@ pub fn is_sep(c: char) -> bool { c == SEP } -impl fmt::Show for Path { +#[stable] +impl fmt::Debug for Path { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - fmt::Show::fmt(&self.display(), f) + fmt::Debug::fmt(&self.display(), f) } }