]> git.lizzy.rs Git - rust.git/blobdiff - src/libcollections/fmt.rs
Auto merge of #31052 - bluss:split-at-mut-str, r=alexcrichton
[rust.git] / src / libcollections / fmt.rs
index d46a3e7e89e88565c12d2d13b79e795be432a61d..97b01a607f5e602a06ea3d30f9b373f3c9c8fec3 100644 (file)
 //! 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