Skip to content

Commit

Permalink
doc-time: fix bad links
Browse files Browse the repository at this point in the history
  • Loading branch information
Zij-IT committed Jul 15, 2023
1 parent 9aa6716 commit f48fdbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pratt/ops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ where
}

/// A representation of an infix operator to be used in combination with
/// [`Pratt::pratt`](super::Pratt::pratt).
/// [`Parser::pratt`](super::Parser::pratt).
pub struct InfixOp<P, E, PO> {
strength: u8,
assoc: Assoc,
Expand Down Expand Up @@ -161,7 +161,7 @@ where
}

/// A representation of a prefix operator to be used in combination with
/// [`Pratt::pratt`](super::Pratt::pratt).
/// [`Parser::pratt`](super::Parser::pratt).
pub struct PrefixOp<Parser, Expr, ParserOut> {
strength: u8,
parser: Parser,
Expand Down Expand Up @@ -221,7 +221,7 @@ where
}

/// A representation of a postfix operator to be used in combination with
/// [`Pratt::pratt`](super::Pratt::pratt).
/// [`Parser::pratt`](super::Parser::pratt).
pub struct PostfixOp<Parser, Expr, ParserOut> {
strength: u8,
parser: Parser,
Expand Down

0 comments on commit f48fdbb

Please sign in to comment.