Skip to content

Commit

Permalink
Fix some doc links
Browse files Browse the repository at this point in the history
  • Loading branch information
Nadrieril committed Jul 19, 2021
1 parent 76d670b commit a4d9911
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,14 +158,13 @@ Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.

[advanced_features]: advanced_features/index.html
[`parser`]: https://docs.rs/pest_consume_macros/1.0.2/pest_consume_macros/attr.parser.html
[`match_nodes`]: macro.match_nodes.html
[`Nodes`]: struct.Nodes.html
[`Node`]: struct.Node.html
[`Node::as_str`]: struct.Node.html#method.as_str
[`Parser`]: trait.Parser.html
[`Parser::parse`]: trait.Parser.html#method.parse
[advanced_features]: https://docs.rs/pest_consume/latest/pest_consume/advanced_features/index.html
[`match_nodes`]: https://docs.rs/pest_consume/latest/pest_consume/macro.match_nodes.html
[`Nodes`]: https://docs.rs/pest_consume/latest/pest_consume/struct.Nodes.html
[`Node`]: https://docs.rs/pest_consume/latest/pest_consume/struct.Node.html
[`Node::as_str`]: https://docs.rs/pest_consume/latest/pest_consume/struct.Node.html#method.as_str
[`Parser`]: https://docs.rs/pest_consume/latest/pest_consume/trait.Parser.html
[`Parser::parse`]: https://docs.rs/pest_consume/latest/pest_consume/trait.Parser.html#method.parse
[pest]: https://pest.rs
[examples]: https://github.com/Nadrieril/pest_consume/tree/master/pest_consume/examples
[dhall-rust-parser]: https://github.com/Nadrieril/dhall-rust/blob/4daead27eb65e3a38869924f0f3ed1f425de1b33/dhall_syntax/src/parser.rs
Expand Down
2 changes: 1 addition & 1 deletion pest_consume/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@
//! dual licensed as above, without any additional terms or conditions.
//!
//! [advanced_features]: advanced_features/index.html
//! [`parser`]: https://docs.rs/pest_consume_macros/1.0.2/pest_consume_macros/attr.parser.html
//! [`parser`]: macro@crate::parser
//! [`Nodes`]: struct.Nodes.html
//! [`Node`]: struct.Node.html
//! [`Node::as_str`]: struct.Node.html#method.as_str
Expand Down
2 changes: 1 addition & 1 deletion pest_consume/src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use pest::RuleType;
/// A trait that provides methods to parse strings.
/// Do not implement manually; instead use the [`parser`] macro provided by this crate.
///
/// [`parser`]: https://docs.rs/pest_consume_macros/1.0.2/pest_consume_macros/attr.parser.html
/// [`parser`]: macro@crate::parser
pub trait Parser {
type Rule: RuleType;
#[doc(hidden)]
Expand Down

0 comments on commit a4d9911

Please sign in to comment.