]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/path/posix.rs
rollup merge of #21457: alexcrichton/issue-21436
[rust.git] / src / libstd / path / posix.rs
index 422e2cedc48f78e6b9e2f769d01ef2bfdb278749..100876271b38f6216e2447db3719ca8d8c316a9b 100644 (file)
@@ -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)
     }
 }