about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarijn Schouten <hkBst@users.noreply.github.com>2024-12-17 14:43:22 +0100
committerGitHub <noreply@github.com>2024-12-17 14:43:22 +0100
commitc482b311956973a9511421b2bab4387dc01c8670 (patch)
treef1faeb0870cc989a386bb3a4d1a57340116aa0c4
parent604d6691d9ee5c88a05569dd3f707b20afd76e97 (diff)
downloadrust-c482b311956973a9511421b2bab4387dc01c8670.tar.gz
rust-c482b311956973a9511421b2bab4387dc01c8670.zip
Fix typo in uint_macros.rs
-rw-r--r--library/core/src/num/uint_macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/num/uint_macros.rs b/library/core/src/num/uint_macros.rs
index c79b2f7ad8e..151d879fabe 100644
--- a/library/core/src/num/uint_macros.rs
+++ b/library/core/src/num/uint_macros.rs
@@ -4,7 +4,7 @@ macro_rules! uint_impl {
         ActualT = $ActualT:ident,
         SignedT = $SignedT:ident,
 
-        // There are all for use *only* in doc comments.
+        // These are all for use *only* in doc comments.
         // As such, they're all passed as literals -- passing them as a string
         // literal is fine if they need to be multiple code tokens.
         // In non-comments, use the associated constants rather than these.