Skip to content

Commit cb4065b

Browse files
committed
Auto merge of #41431 - GuillaumeGomez:hoedown-default, r=aturon
Re-enable hoedown by default r? @rust-lang/docs cc @aturon
2 parents 9cc77d7 + 9c97882 commit cb4065b

File tree

17 files changed

+394
-165
lines changed

17 files changed

+394
-165
lines changed

src/libcollections/binary_heap.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1042,7 +1042,7 @@ impl<'a, T> FusedIterator for Iter<'a, T> {}
10421042

10431043
/// An owning iterator over the elements of a `BinaryHeap`.
10441044
///
1045-
/// This `struct` is created by the [`into_iter`] method on [`BinaryHeap`]
1045+
/// This `struct` is created by the [`into_iter`] method on [`BinaryHeap`][`BinaryHeap`]
10461046
/// (provided by the `IntoIterator` trait). See its documentation for more.
10471047
///
10481048
/// [`into_iter`]: struct.BinaryHeap.html#method.into_iter

src/libcollections/btree/map.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ pub struct IterMut<'a, K: 'a, V: 'a> {
298298

299299
/// An owning iterator over the entries of a `BTreeMap`.
300300
///
301-
/// This `struct` is created by the [`into_iter`] method on [`BTreeMap`]
301+
/// This `struct` is created by the [`into_iter`] method on [`BTreeMap`][`BTreeMap`]
302302
/// (provided by the `IntoIterator` trait). See its documentation for more.
303303
///
304304
/// [`into_iter`]: struct.BTreeMap.html#method.into_iter

src/libcollections/btree/set.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ impl<'a, T: 'a + fmt::Debug> fmt::Debug for Iter<'a, T> {
9797

9898
/// An owning iterator over the items of a `BTreeSet`.
9999
///
100-
/// This `struct` is created by the [`into_iter`] method on [`BTreeSet`]
100+
/// This `struct` is created by the [`into_iter`] method on [`BTreeSet`][`BTreeSet`]
101101
/// (provided by the `IntoIterator` trait). See its documentation for more.
102102
///
103103
/// [`BTreeSet`]: struct.BTreeSet.html

src/libcollections/linked_list.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ impl<'a, T: 'a + fmt::Debug> fmt::Debug for IterMut<'a, T> {
115115

116116
/// An owning iterator over the elements of a `LinkedList`.
117117
///
118-
/// This `struct` is created by the [`into_iter`] method on [`LinkedList`]
118+
/// This `struct` is created by the [`into_iter`] method on [`LinkedList`][`LinkedList`]
119119
/// (provided by the `IntoIterator` trait). See its documentation for more.
120120
///
121121
/// [`into_iter`]: struct.LinkedList.html#method.into_iter

src/libcollections/vec_deque.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2070,7 +2070,7 @@ impl<'a, T> FusedIterator for IterMut<'a, T> {}
20702070

20712071
/// An owning iterator over the elements of a `VecDeque`.
20722072
///
2073-
/// This `struct` is created by the [`into_iter`] method on [`VecDeque`]
2073+
/// This `struct` is created by the [`into_iter`] method on [`VecDeque`][`VecDeque`]
20742074
/// (provided by the `IntoIterator` trait). See its documentation for more.
20752075
///
20762076
/// [`into_iter`]: struct.VecDeque.html#method.into_iter

0 commit comments

Comments
 (0)