From 74dbd6fd7b340a23439c5b41ae979aef6a62bd45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Delahaye?= Date: Thu, 27 Feb 2014 21:00:23 +0100 Subject: [PATCH] Fix typo in doc of Binary trait in std::fmt --- src/libstd/fmt/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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