diff --git a/src/libstd/fmt/mod.rs b/src/libstd/fmt/mod.rs index 5c0838fadca46..bdc1aa75c9419 100644 --- a/src/libstd/fmt/mod.rs +++ b/src/libstd/fmt/mod.rs @@ -580,7 +580,7 @@ pub trait Unsigned { fn fmt(&self, &mut Formatter) -> Result; } /// Format trait for the `o` character #[allow(missing_doc)] pub trait Octal { fn fmt(&self, &mut Formatter) -> Result; } -/// Format trait for the `b` character +/// Format trait for the `t` character #[allow(missing_doc)] pub trait Binary { fn fmt(&self, &mut Formatter) -> Result; } /// Format trait for the `x` character