Skip to content

Commit 53a3f28

Browse files
polazarusalexcrichton
authored andcommitted
Fix typo in doc of Binary trait in std::fmt
1 parent 98782bb commit 53a3f28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/fmt/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ pub trait Unsigned { fn fmt(&self, &mut Formatter) -> Result; }
580580
/// Format trait for the `o` character
581581
#[allow(missing_doc)]
582582
pub trait Octal { fn fmt(&self, &mut Formatter) -> Result; }
583-
/// Format trait for the `b` character
583+
/// Format trait for the `t` character
584584
#[allow(missing_doc)]
585585
pub trait Binary { fn fmt(&self, &mut Formatter) -> Result; }
586586
/// Format trait for the `x` character

0 commit comments

Comments
 (0)