]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/array.rs
std: Rename Show/String to Debug/Display
[rust.git] / src / libcore / array.rs
index 0cc31bf70dee6f68b5896f6ba4323de9f89d96f3..a83537e12f7a9cae95cf81e6ef62decbfa3acff1 100644 (file)
@@ -39,10 +39,10 @@ fn hash(&self, state: &mut S) {
                 }
             }
 
-            #[unstable = "waiting for Show to stabilize"]
-            impl<T:fmt::Show> fmt::Show for [T; $N] {
+            #[stable]
+            impl<T: fmt::Debug> fmt::Debug for [T; $N] {
                 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
-                    fmt::Show::fmt(&&self[], f)
+                    fmt::Debug::fmt(&&self[], f)
                 }
             }