Remove redundant link texts
This commit is contained in:
parent
c0b16b4e6a
commit
21e636f188
@ -367,7 +367,7 @@ labels to triage issues:
|
|||||||
to fix the issue.
|
to fix the issue.
|
||||||
|
|
||||||
* The dark blue **final-comment-period** label marks bugs that are using the
|
* The dark blue **final-comment-period** label marks bugs that are using the
|
||||||
RFC signoff functionality of [rfcbot][rfcbot] and are currently in the final
|
RFC signoff functionality of [rfcbot] and are currently in the final
|
||||||
comment period.
|
comment period.
|
||||||
|
|
||||||
* Red, **I**-prefixed labels indicate the **importance** of the issue. The
|
* Red, **I**-prefixed labels indicate the **importance** of the issue. The
|
||||||
@ -385,7 +385,7 @@ labels to triage issues:
|
|||||||
label.
|
label.
|
||||||
|
|
||||||
* The gray **proposed-final-comment-period** label marks bugs that are using
|
* The gray **proposed-final-comment-period** label marks bugs that are using
|
||||||
the RFC signoff functionality of [rfcbot][rfcbot] and are currently awaiting
|
the RFC signoff functionality of [rfcbot] and are currently awaiting
|
||||||
signoff of all team members in order to enter the final comment period.
|
signoff of all team members in order to enter the final comment period.
|
||||||
|
|
||||||
* Pink, **regression**-prefixed labels track regressions from stable to the
|
* Pink, **regression**-prefixed labels track regressions from stable to the
|
||||||
|
@ -1094,7 +1094,7 @@ impl<T> FusedIterator for Iter<'_, T> {}
|
|||||||
|
|
||||||
/// An owning iterator over the elements of a `BinaryHeap`.
|
/// An owning iterator over the elements of a `BinaryHeap`.
|
||||||
///
|
///
|
||||||
/// This `struct` is created by the [`into_iter`] method on [`BinaryHeap`][`BinaryHeap`]
|
/// This `struct` is created by the [`into_iter`] method on [`BinaryHeap`]
|
||||||
/// (provided by the `IntoIterator` trait). See its documentation for more.
|
/// (provided by the `IntoIterator` trait). See its documentation for more.
|
||||||
///
|
///
|
||||||
/// [`into_iter`]: struct.BinaryHeap.html#method.into_iter
|
/// [`into_iter`]: struct.BinaryHeap.html#method.into_iter
|
||||||
|
@ -283,7 +283,7 @@ pub struct IterMut<'a, K: 'a, V: 'a> {
|
|||||||
|
|
||||||
/// An owning iterator over the entries of a `BTreeMap`.
|
/// An owning iterator over the entries of a `BTreeMap`.
|
||||||
///
|
///
|
||||||
/// This `struct` is created by the [`into_iter`] method on [`BTreeMap`][`BTreeMap`]
|
/// This `struct` is created by the [`into_iter`] method on [`BTreeMap`]
|
||||||
/// (provided by the `IntoIterator` trait). See its documentation for more.
|
/// (provided by the `IntoIterator` trait). See its documentation for more.
|
||||||
///
|
///
|
||||||
/// [`into_iter`]: struct.BTreeMap.html#method.into_iter
|
/// [`into_iter`]: struct.BTreeMap.html#method.into_iter
|
||||||
|
@ -83,7 +83,7 @@ impl<T: fmt::Debug> fmt::Debug for Iter<'_, T> {
|
|||||||
|
|
||||||
/// An owning iterator over the items of a `BTreeSet`.
|
/// An owning iterator over the items of a `BTreeSet`.
|
||||||
///
|
///
|
||||||
/// This `struct` is created by the [`into_iter`] method on [`BTreeSet`][`BTreeSet`]
|
/// This `struct` is created by the [`into_iter`] method on [`BTreeSet`]
|
||||||
/// (provided by the `IntoIterator` trait). See its documentation for more.
|
/// (provided by the `IntoIterator` trait). See its documentation for more.
|
||||||
///
|
///
|
||||||
/// [`BTreeSet`]: struct.BTreeSet.html
|
/// [`BTreeSet`]: struct.BTreeSet.html
|
||||||
|
@ -105,7 +105,7 @@ impl<T: fmt::Debug> fmt::Debug for IterMut<'_, T> {
|
|||||||
|
|
||||||
/// An owning iterator over the elements of a `LinkedList`.
|
/// An owning iterator over the elements of a `LinkedList`.
|
||||||
///
|
///
|
||||||
/// This `struct` is created by the [`into_iter`] method on [`LinkedList`][`LinkedList`]
|
/// This `struct` is created by the [`into_iter`] method on [`LinkedList`]
|
||||||
/// (provided by the `IntoIterator` trait). See its documentation for more.
|
/// (provided by the `IntoIterator` trait). See its documentation for more.
|
||||||
///
|
///
|
||||||
/// [`into_iter`]: struct.LinkedList.html#method.into_iter
|
/// [`into_iter`]: struct.LinkedList.html#method.into_iter
|
||||||
|
@ -2474,7 +2474,7 @@ impl<T> FusedIterator for IterMut<'_, T> {}
|
|||||||
|
|
||||||
/// An owning iterator over the elements of a `VecDeque`.
|
/// An owning iterator over the elements of a `VecDeque`.
|
||||||
///
|
///
|
||||||
/// This `struct` is created by the [`into_iter`] method on [`VecDeque`][`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`]: struct.VecDeque.html#method.into_iter
|
/// [`into_iter`]: struct.VecDeque.html#method.into_iter
|
||||||
|
@ -330,7 +330,7 @@
|
|||||||
//!
|
//!
|
||||||
//! Additionally, the return value of this function is [`fmt::Result`] which is a
|
//! Additionally, the return value of this function is [`fmt::Result`] which is a
|
||||||
//! type alias of [`Result`]`<(), `[`std::fmt::Error`]`>`. Formatting implementations
|
//! type alias of [`Result`]`<(), `[`std::fmt::Error`]`>`. Formatting implementations
|
||||||
//! should ensure that they propagate errors from the [`Formatter`][`Formatter`] (e.g., when
|
//! should ensure that they propagate errors from the [`Formatter`] (e.g., when
|
||||||
//! calling [`write!`]). However, they should never return errors spuriously. That
|
//! calling [`write!`]). However, they should never return errors spuriously. That
|
||||||
//! is, a formatting implementation must and may only return an error if the
|
//! is, a formatting implementation must and may only return an error if the
|
||||||
//! passed-in [`Formatter`] returns an error. This is because, contrary to what
|
//! passed-in [`Formatter`] returns an error. This is because, contrary to what
|
||||||
|
@ -242,7 +242,7 @@ use crate::raw_vec::RawVec;
|
|||||||
/// ensures no unnecessary allocations or deallocations occur. Emptying a `Vec`
|
/// ensures no unnecessary allocations or deallocations occur. Emptying a `Vec`
|
||||||
/// and then filling it back up to the same [`len`] should incur no calls to
|
/// and then filling it back up to the same [`len`] should incur no calls to
|
||||||
/// the allocator. If you wish to free up unused memory, use
|
/// the allocator. If you wish to free up unused memory, use
|
||||||
/// [`shrink_to_fit`][`shrink_to_fit`].
|
/// [`shrink_to_fit`].
|
||||||
///
|
///
|
||||||
/// [`push`] and [`insert`] will never (re)allocate if the reported capacity is
|
/// [`push`] and [`insert`] will never (re)allocate if the reported capacity is
|
||||||
/// sufficient. [`push`] and [`insert`] *will* (re)allocate if
|
/// sufficient. [`push`] and [`insert`] *will* (re)allocate if
|
||||||
@ -2461,7 +2461,7 @@ where
|
|||||||
|
|
||||||
/// An iterator that moves out of a vector.
|
/// An iterator that moves out of a vector.
|
||||||
///
|
///
|
||||||
/// This `struct` is created by the `into_iter` method on [`Vec`][`Vec`] (provided
|
/// This `struct` is created by the `into_iter` method on [`Vec`] (provided
|
||||||
/// by the [`IntoIterator`] trait).
|
/// by the [`IntoIterator`] trait).
|
||||||
///
|
///
|
||||||
/// [`Vec`]: struct.Vec.html
|
/// [`Vec`]: struct.Vec.html
|
||||||
|
@ -226,7 +226,7 @@ impl f32 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Returns `true` if the number is neither zero, infinite,
|
/// Returns `true` if the number is neither zero, infinite,
|
||||||
/// [subnormal][subnormal], or `NaN`.
|
/// [subnormal], or `NaN`.
|
||||||
///
|
///
|
||||||
/// ```
|
/// ```
|
||||||
/// use std::f32;
|
/// use std::f32;
|
||||||
|
@ -226,7 +226,7 @@ impl f64 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Returns `true` if the number is neither zero, infinite,
|
/// Returns `true` if the number is neither zero, infinite,
|
||||||
/// [subnormal][subnormal], or `NaN`.
|
/// [subnormal], or `NaN`.
|
||||||
///
|
///
|
||||||
/// ```
|
/// ```
|
||||||
/// use std::f64;
|
/// use std::f64;
|
||||||
|
@ -1370,7 +1370,7 @@ unsafe impl<A> TrustedLen for IterMut<'_, A> {}
|
|||||||
/// The iterator yields one value if the result is [`Ok`], otherwise none.
|
/// The iterator yields one value if the result is [`Ok`], otherwise none.
|
||||||
///
|
///
|
||||||
/// This struct is created by the [`into_iter`] method on
|
/// This struct is created by the [`into_iter`] method on
|
||||||
/// [`Result`][`Result`] (provided by the [`IntoIterator`] trait).
|
/// [`Result`] (provided by the [`IntoIterator`] trait).
|
||||||
///
|
///
|
||||||
/// [`Ok`]: enum.Result.html#variant.Ok
|
/// [`Ok`]: enum.Result.html#variant.Ok
|
||||||
/// [`Result`]: enum.Result.html
|
/// [`Result`]: enum.Result.html
|
||||||
|
@ -1076,7 +1076,7 @@ impl<'a, K, V> IterMut<'a, K, V> {
|
|||||||
|
|
||||||
/// An owning iterator over the entries of a `HashMap`.
|
/// An owning iterator over the entries of a `HashMap`.
|
||||||
///
|
///
|
||||||
/// This `struct` is created by the [`into_iter`] method on [`HashMap`][`HashMap`]
|
/// This `struct` is created by the [`into_iter`] method on [`HashMap`]
|
||||||
/// (provided by the `IntoIterator` trait). See its documentation for more.
|
/// (provided by the `IntoIterator` trait). See its documentation for more.
|
||||||
///
|
///
|
||||||
/// [`into_iter`]: struct.HashMap.html#method.into_iter
|
/// [`into_iter`]: struct.HashMap.html#method.into_iter
|
||||||
|
@ -1101,7 +1101,7 @@ pub struct Iter<'a, K: 'a> {
|
|||||||
|
|
||||||
/// An owning iterator over the items of a `HashSet`.
|
/// An owning iterator over the items of a `HashSet`.
|
||||||
///
|
///
|
||||||
/// This `struct` is created by the [`into_iter`] method on [`HashSet`][`HashSet`]
|
/// This `struct` is created by the [`into_iter`] method on [`HashSet`]
|
||||||
/// (provided by the `IntoIterator` trait). See its documentation for more.
|
/// (provided by the `IntoIterator` trait). See its documentation for more.
|
||||||
///
|
///
|
||||||
/// [`HashSet`]: struct.HashSet.html
|
/// [`HashSet`]: struct.HashSet.html
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
//! Cross-platform path manipulation.
|
//! Cross-platform path manipulation.
|
||||||
//!
|
//!
|
||||||
//! This module provides two types, [`PathBuf`] and [`Path`][`Path`] (akin to [`String`]
|
//! This module provides two types, [`PathBuf`] and [`Path`] (akin to [`String`]
|
||||||
//! and [`str`]), for working with paths abstractly. These types are thin wrappers
|
//! and [`str`]), for working with paths abstractly. These types are thin wrappers
|
||||||
//! around [`OsString`] and [`OsStr`] respectively, meaning that they work directly
|
//! around [`OsString`] and [`OsStr`] respectively, meaning that they work directly
|
||||||
//! on strings according to the local platform's path syntax.
|
//! on strings according to the local platform's path syntax.
|
||||||
|
@ -558,7 +558,7 @@ pub struct SendError<T>(#[stable(feature = "rust1", since = "1.0.0")] pub T);
|
|||||||
/// An error returned from the [`recv`] function on a [`Receiver`].
|
/// An error returned from the [`recv`] function on a [`Receiver`].
|
||||||
///
|
///
|
||||||
/// The [`recv`] operation can only fail if the sending half of a
|
/// The [`recv`] operation can only fail if the sending half of a
|
||||||
/// [`channel`][`channel`] (or [`sync_channel`]) is disconnected, implying that no further
|
/// [`channel`] (or [`sync_channel`]) is disconnected, implying that no further
|
||||||
/// messages will ever be received.
|
/// messages will ever be received.
|
||||||
///
|
///
|
||||||
/// [`recv`]: struct.Receiver.html#method.recv
|
/// [`recv`]: struct.Receiver.html#method.recv
|
||||||
|
Loading…
x
Reference in New Issue
Block a user