Skip to content

Commit 6ac6f95

Browse files
committed
Improve some wording
1 parent c9ddf51 commit 6ac6f95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rust-2024/intoiterator-box-slice.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ More information may be found in the tracking issue at <https://github.com/rust-
77

88
- Boxed slices implement [`IntoIterator`] in *all* editions.
99
- Calls to [`IntoIterator::into_iter`] are *hidden* in editions prior to 2024 when using method call syntax (i.e., `boxed_slice.into_iter()`). So, `boxed_slice.into_iter()` still resolves to `(&(*boxed_slice)).into_iter()` as it has before.
10-
- `boxed_slice.into_iter()` changes meaning to be the call [`IntoIterator::into_iter`] in Rust 2024.
10+
- `boxed_slice.into_iter()` changes meaning to call [`IntoIterator::into_iter`] in Rust 2024.
1111

1212
[`IntoIterator`]: ../../std/iter/trait.IntoIterator.html
1313
[`IntoIterator::into_iter`]: ../../std/iter/trait.IntoIterator.html#tymethod.into_iter

0 commit comments

Comments
 (0)