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.
2 parents 91bceb8 + 999c2e2 commit 738afd4Copy full SHA for 738afd4
src/libcore/iter/range.rs
@@ -166,14 +166,14 @@ macro_rules! step_impl_no_between {
166
}
167
168
step_impl_unsigned!(usize u8 u16);
169
-#[cfg(not(target_pointer_witdth = "16"))]
+#[cfg(not(target_pointer_width = "16"))]
170
step_impl_unsigned!(u32);
171
-#[cfg(target_pointer_witdth = "16")]
+#[cfg(target_pointer_width = "16")]
172
step_impl_no_between!(u32);
173
step_impl_signed!([isize: usize] [i8: u8] [i16: u16]);
174
175
step_impl_signed!([i32: u32]);
176
177
step_impl_no_between!(i32);
178
#[cfg(target_pointer_width = "64")]
179
step_impl_unsigned!(u64);
0 commit comments