about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-01-27 14:03:06 +0000
committerbors <bors@rust-lang.org>2015-01-27 14:03:06 +0000
commit777435990e0e91df6b72ce80c9b6fa485eeb5daa (patch)
tree8cec5d248bd65c33e4f9e33222f934b03a6d0ac2
parentd77f6d5366b330f9c2061cad0d3ff638c9cc05b7 (diff)
parent0736ad3c2abdd899eb625fc8bfdc632b876abe5a (diff)
downloadrust-777435990e0e91df6b72ce80c9b6fa485eeb5daa.tar.gz
rust-777435990e0e91df6b72ce80c9b6fa485eeb5daa.zip
Auto merge of #21586 - pyfisch:patch-1, r=alexcrichton
Spellfix for `Debug` trait documentation. Change "most all types should implement this" to "all types should implement this". Same fix for deprecated `Show` trait.
-rw-r--r--src/libcore/fmt/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/fmt/mod.rs b/src/libcore/fmt/mod.rs
index 2bb4e094863..3c07e2e85d1 100644
--- a/src/libcore/fmt/mod.rs
+++ b/src/libcore/fmt/mod.rs
@@ -231,7 +231,7 @@ impl<'a> Display for Arguments<'a> {
     }
 }
 
-/// Format trait for the `:?` format. Useful for debugging, most all types
+/// Format trait for the `:?` format. Useful for debugging, all types
 /// should implement this.
 #[deprecated = "renamed to Debug"]
 #[cfg(not(stage0))]
@@ -240,7 +240,7 @@ pub trait Show {
     fn fmt(&self, &mut Formatter) -> Result;
 }
 
-/// Format trait for the `:?` format. Useful for debugging, most all types
+/// Format trait for the `:?` format. Useful for debugging, all types
 /// should implement this.
 #[unstable = "I/O and core have yet to be reconciled"]
 #[rustc_on_unimplemented = "`{Self}` cannot be formatted using `:?`; if it is defined in your \