We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca2fa97 commit fcc970aCopy full SHA for fcc970a
src/libcore/mem.rs
@@ -468,7 +468,7 @@ pub fn swap<T>(x: &mut T, y: &mut T) {
468
let mut i = 0;
469
while i + block_size as isize <= len {
470
// Create some uninitialized memory as scratch space
471
- // Decaring `t` here avoids aligning the stack when this loop is unused
+ // Declaring `t` here avoids aligning the stack when this loop is unused
472
let mut t: Block = uninitialized();
473
let t = &mut t as *mut _ as *mut u8;
474
0 commit comments