diff options
| author | Jakub Bukaj <jakub@jakub.cc> | 2014-11-23 14:11:49 -0500 |
|---|---|---|
| committer | Jakub Bukaj <jakub@jakub.cc> | 2014-11-23 14:11:49 -0500 |
| commit | 1e5de8cf3cde5f8cc7376c637d072b765c6403fe (patch) | |
| tree | 7ad0a3dc8fea1f9de68bca8b59117397dc9a59d6 /src/libcore/fmt | |
| parent | ab8d811ebdbf5dbd59f6a3d94f99f035491cedf5 (diff) | |
| parent | 5a08e679c792cbb5110c18d80a5090ad31bb103a (diff) | |
| download | rust-1e5de8cf3cde5f8cc7376c637d072b765c6403fe.tar.gz rust-1e5de8cf3cde5f8cc7376c637d072b765c6403fe.zip | |
rollup merge of #19184: Gekkio/fix-binary-format-char
This small piece of documentation was missed in the format character change in 4af3494bb02e80badc978faa65e59625ade0c675.
Diffstat (limited to 'src/libcore/fmt')
| -rw-r--r-- | src/libcore/fmt/mod.rs | 2 |
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. |
