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 19:00:15 -0400
committerGitHub <noreply@github.com>2020-05-06 19:00:15 -0400
commit488e660728eb8f97650a85c12ffbfe61b7b20a6b (patch)
tree2459698878c34baeb4ef631cc725d4821b2dbdcf /src/liballoc
parentc8aba78613886a29a758cc618f642fd9736cd862 (diff)
downloadrust-488e660728eb8f97650a85c12ffbfe61b7b20a6b.tar.gz
rust-488e660728eb8f97650a85c12ffbfe61b7b20a6b.zip
grammar: noun not verb
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/fmt.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liballoc/fmt.rs b/src/liballoc/fmt.rs
index e43def2ac3d..9c8e124d70a 100644
--- a/src/liballoc/fmt.rs
+++ b/src/liballoc/fmt.rs
@@ -173,9 +173,9 @@
 //!         like `{:08}` would yield `00000001` for the integer `1`, while the
 //!         same format would yield `-0000001` for the integer `-1`. Notice that
 //!         the negative version has one fewer zero than the positive version.
-//!         Note that padding zeroes are always placed after the sign (if any)
+//!         Note that padding zeros are always placed after the sign (if any)
 //!         and before the digits. When used together with the `#` flag, a similar
-//!         rule applies: padding zeroes are inserted after the prefix but before
+//!         rule applies: padding zeros are inserted after the prefix but before
 //!         the digits. The prefix is included in the total width.
 //!
 //! ## Precision