about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorJoonas Javanainen <joonas.javanainen@gmail.com>2014-11-21 15:12:08 +0000
committerJoonas Javanainen <joonas.javanainen@gmail.com>2014-11-21 15:12:08 +0000
commit5a08e679c792cbb5110c18d80a5090ad31bb103a (patch)
treedace1e71e64ad6166cbb07e477c16bf4daec0bed /src/libcore
parent47c1d437c93872e6776570beac839f2587782f94 (diff)
Fix std::fmt::Binary format char in docs
This small piece of documentation was missed in the format character change
in 4af3494bb02e80badc978faa65e59625ade0c675.
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/fmt/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/fmt/mod.rs b/src/libcore/fmt/mod.rs
index be8828b3ec8..6e77b0a7c79 100644
--- a/src/libcore/fmt/mod.rs
+++ b/src/libcore/fmt/mod.rs
@@ -179,7 +179,7 @@ pub trait Octal for Sized? {
     fn fmt(&self, &mut Formatter) -> Result;
 }
 
-/// Format trait for the `t` character
+/// Format trait for the `b` character
 #[unstable = "I/O and core have yet to be reconciled"]
 pub trait Binary for Sized? {
     /// Formats the value using the given formatter.