We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55cac26 commit dfe69f7Copy full SHA for dfe69f7
compiler/rustc_lint/src/shadowed_into_iter.rs
@@ -52,7 +52,7 @@ declare_lint! {
52
/// Since Rust 1.80.0, boxed slices implement `IntoIterator`. However, to avoid
53
/// breakage, `boxed_slice.into_iter()` in Rust 2015, 2018, and 2021 code will still
54
/// behave as `(&boxed_slice).into_iter()`, returning an iterator over
55
- /// references, just like in Rust 1.80.0 and earlier.
+ /// references, just like in Rust 1.79.0 and earlier.
56
/// This only applies to the method call syntax `boxed_slice.into_iter()`, not to
57
/// any other syntax such as `for _ in boxed_slice` or `IntoIterator::into_iter(boxed_slice)`.
58
pub BOXED_SLICE_INTO_ITER,
0 commit comments