]> git.lizzy.rs Git - rust.git/blobdiff - src/liballoc/raw_vec.rs
Various minor/cosmetic improvements to code
[rust.git] / src / liballoc / raw_vec.rs
index e87bf78561c615fbbaff275f2a07b4e8eb8797c3..f4674b327695e834e900d8231a005f1b9fee03f6 100644 (file)
@@ -739,7 +739,7 @@ fn drop(&mut self) {
 // On 64-bit we just need to check for overflow since trying to allocate
 // `> isize::MAX` bytes will surely fail. On 32-bit and 16-bit we need to add
 // an extra guard for this in case we're running on a platform which can use
-// all 4GB in user-space. e.g. PAE or x32
+// all 4GB in user-space. e.g., PAE or x32
 
 #[inline]
 fn alloc_guard(alloc_size: usize) -> Result<(), CollectionAllocErr> {