about summary refs log tree commit diff
path: root/library/core/src/ptr/alignment.rs
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2024-03-06 20:21:00 +0100
committerRalf Jung <post@ralfj.de>2024-03-07 07:49:22 +0100
commit1a2bc1102d9502a5058585f6422a974323a884a7 (patch)
tree6c4fd55aea99098489c976397c135054ecd63881 /library/core/src/ptr/alignment.rs
parentaa029ce4d8f5048dafd44b6af794542ee19f7c37 (diff)
downloadrust-1a2bc1102d9502a5058585f6422a974323a884a7.tar.gz
rust-1a2bc1102d9502a5058585f6422a974323a884a7.zip
Rust is a proper name: rust → Rust
Diffstat (limited to 'library/core/src/ptr/alignment.rs')
-rw-r--r--library/core/src/ptr/alignment.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/ptr/alignment.rs b/library/core/src/ptr/alignment.rs
index 3eea065eef6..3508b0c7f23 100644
--- a/library/core/src/ptr/alignment.rs
+++ b/library/core/src/ptr/alignment.rs
@@ -3,7 +3,7 @@ use crate::num::NonZero;
 use crate::{cmp, fmt, hash, mem, num};
 
 /// A type storing a `usize` which is a power of two, and thus
-/// represents a possible alignment in the rust abstract machine.
+/// represents a possible alignment in the Rust abstract machine.
 ///
 /// Note that particularly large alignments, while representable in this type,
 /// are likely not to be supported by actual allocators and linkers.