about summary refs log tree commit diff
path: root/src/libcollections
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-03-02 20:26:39 +0000
committerbors <bors@rust-lang.org>2015-03-02 20:26:39 +0000
commit2ca6eaedae9ec4bff2a63f81f473aba653e46ac5 (patch)
treec0f79ec53e9f9ca46755b5ddccc42e67ebbb69a7 /src/libcollections
parent1cc8b6ec664f30b43f75551e95299d943c8a4e6a (diff)
parentc4b1500fec44c4ed967542fda3cd9c104addbb80 (diff)
downloadrust-2ca6eaedae9ec4bff2a63f81f473aba653e46ac5.tar.gz
rust-2ca6eaedae9ec4bff2a63f81f473aba653e46ac5.zip
Auto merge of #22963 - Manishearth:rollup, r=Manishearth
Diffstat (limited to 'src/libcollections')
-rw-r--r--src/libcollections/fmt.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/fmt.rs b/src/libcollections/fmt.rs
index 98673af3c68..5a20ba4b49f 100644
--- a/src/libcollections/fmt.rs
+++ b/src/libcollections/fmt.rs
@@ -364,7 +364,7 @@
 //!     * `o` - precedes the argument with a "0o"
 //! * '0' - This is used to indicate for integer formats that the padding should
 //!         both be done with a `0` character as well as be sign-aware. A format
-//!         like `{:08d}` would yield `00000001` for the integer `1`, while the
+//!         like `{:08}` would yield `00000001` for the integer `1`, while the
 //!         same format would yield `-0000001` for the integer `-1`. Notice that
 //!         the negative version has one fewer zero than the positive version.
 //!