From 337bfeebc13ac553f6e17cc75eff17306b6a9e1d Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Thu, 8 Feb 2024 16:04:13 +0100 Subject: [PATCH] uucore/num_format: fix typo in comment --- src/uucore/src/lib/features/format/num_format.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uucore/src/lib/features/format/num_format.rs b/src/uucore/src/lib/features/format/num_format.rs index 3e9c44f22..4c4a541c4 100644 --- a/src/uucore/src/lib/features/format/num_format.rs +++ b/src/uucore/src/lib/features/format/num_format.rs @@ -149,7 +149,7 @@ impl Formatter for UnsignedInt { } }; - // Zeroes doe not get a prefix. An octal value does also not get a + // Zeroes do not get a prefix. An octal value does also not get a // prefix if the padded value will not start with a zero. let prefix = match (x, self.variant) { (1.., UnsignedIntVariant::Hexadecimal(Case::Lowercase, Prefix::Yes)) => "0x",