From f48fdbb92d870672d62d897c086b2f27ea2df208 Mon Sep 17 00:00:00 2001 From: Elijah Hartvigsen Date: Sat, 15 Jul 2023 23:50:33 +0200 Subject: [PATCH] doc-time: fix bad links --- src/pratt/ops.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pratt/ops.rs b/src/pratt/ops.rs index 18511bb7..e3abe137 100644 --- a/src/pratt/ops.rs +++ b/src/pratt/ops.rs @@ -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 { strength: u8, assoc: Assoc, @@ -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 { strength: u8, parser: Parser, @@ -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 { strength: u8, parser: Parser,