about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2020-05-06 18:58:45 -0400
committerGitHub <noreply@github.com>2020-05-06 18:58:45 -0400
commit5f54ce7ec9dd768cd7378de47442831b1d2bb998 (patch)
treecb00943e78987d70c9fca61fccc998d345d83fb7 /src/liballoc
parent39b5b7000a587ad3d36d9af15bafb8c900f10f73 (diff)
downloadrust-5f54ce7ec9dd768cd7378de47442831b1d2bb998.tar.gz
rust-5f54ce7ec9dd768cd7378de47442831b1d2bb998.zip
grammar: disambiguate space-character
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/fmt.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/fmt.rs b/src/liballoc/fmt.rs
index 9a4e9f4d26f..b9da68e031b 100644
--- a/src/liballoc/fmt.rs
+++ b/src/liballoc/fmt.rs
@@ -130,7 +130,7 @@
 //!
 //! The default [fill/alignment](#fillalignment) for non-numerics is a space and
 //! left-aligned. The
-//! default for numeric formatters is also a space but with right-alignment. If
+//! default for numeric formatters is also a space character but with right-alignment. If
 //! the `0` flag (see below) is specified for numerics, then the implicit fill character is
 //! `0`.
 //!