diff options
| author | Stuart Cook <Zalathar@users.noreply.github.com> | 2025-07-29 16:16:44 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-29 16:16:44 +1000 |
| commit | f9c114ef90cd22028d0c5d1976ecae8b9afa92b4 (patch) | |
| tree | e66240fc2dbe3d549eb2fc4126280996c496dedb | |
| parent | fce74bacf3fc25b76cc0d021877f64184aacc4ad (diff) | |
| parent | c340233769438df7299624b2d0de791995245518 (diff) | |
| download | rust-f9c114ef90cd22028d0c5d1976ecae8b9afa92b4.tar.gz rust-f9c114ef90cd22028d0c5d1976ecae8b9afa92b4.zip | |
Rollup merge of #144575 - xonx4l:patch-6, r=scottmcm
fixed typo chunks->as_chunks Fixes rust-lang/rust#144555 info-: fix typo chunks -> as_chunks This now take us to as_chunks page when clicking on as_chunks link and not to chunks . Thanks .
| -rw-r--r-- | library/core/src/slice/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/slice/mod.rs b/library/core/src/slice/mod.rs index 1f34a7931d2..14042997bc2 100644 --- a/library/core/src/slice/mod.rs +++ b/library/core/src/slice/mod.rs @@ -1230,7 +1230,7 @@ impl<T> [T] { /// /// [`chunks`]: slice::chunks /// [`rchunks_exact`]: slice::rchunks_exact - /// [`as_chunks`]: slice::chunks + /// [`as_chunks`]: slice::as_chunks #[stable(feature = "chunks_exact", since = "1.31.0")] #[rustc_const_unstable(feature = "const_slice_make_iter", issue = "137737")] #[inline] |
