diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2021-09-25 18:22:19 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-25 18:22:19 -0700 |
| commit | b8c3a6cfb94f352e62b8b1eecf196d5013cbbd6e (patch) | |
| tree | aa9c1224d85a9b6200b0178d878d2fb36ff502ad /library/alloc/src/collections/vec_deque | |
| parent | f9d4eb0ae3014d5f949c2e088536f8571a967a15 (diff) | |
| parent | 372711906b95f3008bca52869a5bd923767062d0 (diff) | |
| download | rust-b8c3a6cfb94f352e62b8b1eecf196d5013cbbd6e.tar.gz rust-b8c3a6cfb94f352e62b8b1eecf196d5013cbbd6e.zip | |
Rollup merge of #89010 - est31:intra_doc_links, r=m-ou-se
Add some intra doc links
Diffstat (limited to 'library/alloc/src/collections/vec_deque')
| -rw-r--r-- | library/alloc/src/collections/vec_deque/into_iter.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/library/alloc/src/collections/vec_deque/into_iter.rs b/library/alloc/src/collections/vec_deque/into_iter.rs index 54a157be0b9..55f6138cd0f 100644 --- a/library/alloc/src/collections/vec_deque/into_iter.rs +++ b/library/alloc/src/collections/vec_deque/into_iter.rs @@ -8,9 +8,10 @@ use super::VecDeque; /// An owning iterator over the elements of a `VecDeque`. /// /// This `struct` is created by the [`into_iter`] method on [`VecDeque`] -/// (provided by the `IntoIterator` trait). See its documentation for more. +/// (provided by the [`IntoIterator`] trait). See its documentation for more. /// /// [`into_iter`]: VecDeque::into_iter +/// [`IntoIterator`]: core::iter::IntoIterator #[derive(Clone)] #[stable(feature = "rust1", since = "1.0.0")] pub struct IntoIter< |
