Skip to content

Commit

Permalink
fix doc links
Browse files Browse the repository at this point in the history
  • Loading branch information
skius committed Jul 14, 2023
1 parent 6b88a3e commit 70e1535
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions experimental/unicodeset_parser/src/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ impl ParseError {
#[derive(Debug, Clone)]
#[non_exhaustive]
pub enum VariableValue<'a> {
/// A UnicodeSet, represented as a [`CodePointInversionListAndStringList`].
/// A UnicodeSet, represented as a [`CodePointInversionListAndStringList`](CodePointInversionListAndStringList).
UnicodeSet(CodePointInversionListAndStringList<'a>),
// in theory, a one-code-point string is always the same as a char, but we might want to keep
// this variant for efficiency?
Expand Down Expand Up @@ -1244,7 +1244,7 @@ where
}
}

/// Parses a UnicodeSet pattern and returns a UnicodeSet in the form of a [`CodePointInversionListAndStringList`].
/// Parses a UnicodeSet pattern and returns a UnicodeSet in the form of a [`CodePointInversionListAndStringList`](CodePointInversionListAndStringList).
///
/// Supports UnicodeSets as described in [UTS #35 - Unicode Sets](https://unicode.org/reports/tr35/#Unicode_Sets).
///
Expand Down

0 comments on commit 70e1535

Please sign in to comment.