Skip to content

Commit 0736ad3

Browse files
committed
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.
1 parent 796d009 commit 0736ad3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/fmt/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ impl<'a> Display for Arguments<'a> {
231231
}
232232
}
233233

234-
/// Format trait for the `:?` format. Useful for debugging, most all types
234+
/// Format trait for the `:?` format. Useful for debugging, all types
235235
/// should implement this.
236236
#[deprecated = "renamed to Debug"]
237237
#[cfg(not(stage0))]
@@ -240,7 +240,7 @@ pub trait Show {
240240
fn fmt(&self, &mut Formatter) -> Result;
241241
}
242242

243-
/// Format trait for the `:?` format. Useful for debugging, most all types
243+
/// Format trait for the `:?` format. Useful for debugging, all types
244244
/// should implement this.
245245
#[unstable = "I/O and core have yet to be reconciled"]
246246
pub trait Debug {

0 commit comments

Comments
 (0)