about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-12-17 22:34:44 +0100
committerGitHub <noreply@github.com>2024-12-17 22:34:44 +0100
commit3b0df8c59f8811be5eb3b587c33ce75f0e788876 (patch)
treef7e1adfad2f729ba58cad45112b5bc659bb821ed
parent4b905c8a5df8bc5cecb0aab08fc31fb3e2b43db6 (diff)
parentc482b311956973a9511421b2bab4387dc01c8670 (diff)
downloadrust-3b0df8c59f8811be5eb3b587c33ce75f0e788876.tar.gz
rust-3b0df8c59f8811be5eb3b587c33ce75f0e788876.zip
Rollup merge of #134426 - hkBst:patch-3, r=lqd
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.