about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorPyfisch <pyfisch@gmail.com>2015-01-24 14:54:43 +0100
committerPyfisch <pyfisch@gmail.com>2015-01-24 14:54:43 +0100
commit0736ad3c2abdd899eb625fc8bfdc632b876abe5a (patch)
tree66268a0b4dfde1d9940f6a797cb7ca6380523c93 /src/libcore
parent796d00948a890fde67d9f92d1cc6e8c5edc2c879 (diff)
downloadrust-0736ad3c2abdd899eb625fc8bfdc632b876abe5a.tar.gz
rust-0736ad3c2abdd899eb625fc8bfdc632b876abe5a.zip
Spellfix for Debug trait
Spellfix for `Debug` trait documentation. Change "most all types should implement this" to "all types should implement this". Same fix for deprecated `Show` trait.
Diffstat (limited to 'src/libcore')
-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 0e8d31a62ee..d4ffea3371e 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"]
 pub trait Debug {