about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2016-01-19 04:08:58 +0530
committerManish Goregaokar <manishsmail@gmail.com>2016-01-19 04:08:58 +0530
commitf7913955252baf87a1d0c35d840f24ef32c220da (patch)
tree06b31494c67b11bb0a3ca02e0dcbe51348a7e72f
parent08886499cf0f7fea5de2cc555ea7bfe9ceb0b40f (diff)
parent46c23e8f0316e9dae0f3596ff252a0b69d345369 (diff)
downloadrust-f7913955252baf87a1d0c35d840f24ef32c220da.tar.gz
rust-f7913955252baf87a1d0c35d840f24ef32c220da.zip
Rollup merge of #30981 - boblehest:tmp, r=alexcrichton
Original: #30968 (My first PR was targeting the wrong branch)
-rw-r--r--src/libcollections/fmt.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcollections/fmt.rs b/src/libcollections/fmt.rs
index d46a3e7e89e..97b01a607f5 100644
--- a/src/libcollections/fmt.rs
+++ b/src/libcollections/fmt.rs
@@ -348,8 +348,8 @@
 //! The fill character is provided normally in conjunction with the `width`
 //! parameter. This indicates that if the value being formatted is smaller than
 //! `width` some extra characters will be printed around it. The extra
-//! characters are specified by `fill`, and the alignment can be one of two
-//! options:
+//! characters are specified by `fill`, and the alignment can be one of the
+//! following options:
 //!
 //! * `<` - the argument is left-aligned in `width` columns
 //! * `^` - the argument is center-aligned in `width` columns