From 46c23e8f0316e9dae0f3596ff252a0b69d345369 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rn=20Lode?= Date: Sun, 17 Jan 2016 04:36:03 +0100 Subject: [PATCH] Fix typo in std::fmt docs --- src/libcollections/fmt.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcollections/fmt.rs b/src/libcollections/fmt.rs index 1450b8efb0f..31f750b0d36 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