1
Fork 0

Add inner links in documentation

From [this SO question](https://stackoverflow.com/q/50518757/2733851) it looks like this page isn't really clear.
I personally do think this page is quite clear, the only think I could think of was adding some references.
This commit is contained in:
Martin Carton 2018-05-25 22:55:33 +02:00 committed by GitHub
parent 990d8aa743
commit 91f7ae26b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -340,7 +340,8 @@
//! //!
//! ## Fill/Alignment //! ## Fill/Alignment
//! //!
//! The fill character is provided normally in conjunction with the `width` //! The fill character is provided normally in conjunction with the
//! [`width`](#width)
//! parameter. This indicates that if the value being formatted is smaller than //! parameter. This indicates that if the value being formatted is smaller than
//! `width` some extra characters will be printed around it. The extra //! `width` some extra characters will be printed around it. The extra
//! characters are specified by `fill`, and the alignment can be one of the //! characters are specified by `fill`, and the alignment can be one of the
@ -388,7 +389,8 @@
//! padding specified by fill/alignment will be used to take up the required //! padding specified by fill/alignment will be used to take up the required
//! space. //! space.
//! //!
//! The default fill/alignment for non-numerics is a space and left-aligned. The //! The default [fill/alignment](#fillalignment) for non-numerics is a space and
//! left-aligned. The
//! defaults for numeric formatters is also a space but with right-alignment. If //! defaults for numeric formatters is also a space but with right-alignment. If
//! the `0` flag is specified for numerics, then the implicit fill character is //! the `0` flag is specified for numerics, then the implicit fill character is
//! `0`. //! `0`.