Skip to content

Commit

Permalink
fixed broken links to char
Browse files Browse the repository at this point in the history
  • Loading branch information
r3drock committed Aug 4, 2018
1 parent 3edb355 commit 33483fa
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions src/libcore/str/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2117,7 +2117,7 @@ impl str {
/// This length is in bytes, not [`char`]s or graphemes. In other words,
/// it may not be what a human considers the length of the string.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
///
/// # Examples
///
Expand Down Expand Up @@ -2590,7 +2590,7 @@ impl str {
/// Value, and may not match your idea of what a 'character' is. Iteration
/// over grapheme clusters may be what you actually want.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
///
/// # Examples
///
Expand Down Expand Up @@ -2643,7 +2643,7 @@ impl str {
/// The iterator yields tuples. The position is first, the [`char`] is
/// second.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
///
/// # Examples
///
Expand Down Expand Up @@ -2946,7 +2946,7 @@ impl str {
/// The pattern can be a `&str`, [`char`], or a closure that determines if
/// a character matches.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
/// [`None`]: option/enum.Option.html#variant.None
///
/// # Examples
Expand Down Expand Up @@ -2994,7 +2994,7 @@ impl str {
/// The pattern can be a `&str`, [`char`], or a closure that determines if
/// a character matches.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
/// [`None`]: option/enum.Option.html#variant.None
///
/// # Examples
Expand Down Expand Up @@ -3050,7 +3050,7 @@ impl str {
/// If the pattern allows a reverse search but its results might differ
/// from a forward search, the [`rsplit`] method can be used.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
/// [`rsplit`]: #method.rsplit
///
/// # Examples
Expand Down Expand Up @@ -3157,7 +3157,7 @@ impl str {
/// The pattern can be a `&str`, [`char`], or a closure that determines the
/// split.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
///
/// # Iterator behavior
///
Expand Down Expand Up @@ -3224,7 +3224,7 @@ impl str {
/// elements. This is true for, eg, [`char`] but not for `&str`.
///
/// [`DoubleEndedIterator`]: iter/trait.DoubleEndedIterator.html
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
///
/// If the pattern allows a reverse search but its results might differ
/// from a forward search, the [`rsplit_terminator`] method can be used.
Expand Down Expand Up @@ -3259,7 +3259,7 @@ impl str {
/// Additional libraries might provide more complex patterns like
/// regular expressions.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
///
/// Equivalent to [`split`], except that the trailing substring is
/// skipped if empty.
Expand Down Expand Up @@ -3306,7 +3306,7 @@ impl str {
/// The pattern can be a `&str`, [`char`], or a closure that determines the
/// split.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
///
/// # Iterator behavior
///
Expand Down Expand Up @@ -3361,7 +3361,7 @@ impl str {
/// The pattern can be a `&str`, [`char`], or a closure that
/// determines the split.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
///
/// # Iterator behavior
///
Expand Down Expand Up @@ -3407,7 +3407,7 @@ impl str {
/// The pattern can be a `&str`, [`char`], or a closure that
/// determines if a character matches.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
///
/// # Iterator behavior
///
Expand All @@ -3416,7 +3416,7 @@ impl str {
/// elements. This is true for, eg, [`char`] but not for `&str`.
///
/// [`DoubleEndedIterator`]: iter/trait.DoubleEndedIterator.html
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
///
/// If the pattern allows a reverse search but its results might differ
/// from a forward search, the [`rmatches`] method can be used.
Expand Down Expand Up @@ -3446,7 +3446,7 @@ impl str {
/// The pattern can be a `&str`, [`char`], or a closure that determines if
/// a character matches.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
///
/// # Iterator behavior
///
Expand Down Expand Up @@ -3488,7 +3488,7 @@ impl str {
/// The pattern can be a `&str`, [`char`], or a closure that determines
/// if a character matches.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
///
/// # Iterator behavior
///
Expand Down Expand Up @@ -3532,7 +3532,7 @@ impl str {
/// The pattern can be a `&str`, [`char`], or a closure that determines if a
/// character matches.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
///
/// # Iterator behavior
///
Expand Down Expand Up @@ -3665,7 +3665,7 @@ impl str {
/// The pattern can be a [`char`] or a closure that determines if a
/// character matches.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
///
/// # Examples
///
Expand Down Expand Up @@ -3711,7 +3711,7 @@ impl str {
/// The pattern can be a `&str`, [`char`], or a closure that determines if
/// a character matches.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
///
/// # Text directionality
///
Expand Down Expand Up @@ -3750,7 +3750,7 @@ impl str {
/// The pattern can be a `&str`, [`char`], or a closure that
/// determines if a character matches.
///
/// [`char`]: primitive.char.html
/// [`char`]: ../../std/primitive.char.html
///
/// # Text directionality
///
Expand Down

0 comments on commit 33483fa

Please sign in to comment.