diff options
author | Nadrieril | 2019-09-10 13:57:43 +0200 |
---|---|---|
committer | Nadrieril | 2019-09-10 13:57:43 +0200 |
commit | a86088505de38c9b3d4c4bb8feecab28055514d8 (patch) | |
tree | 84e820c0bfb3a494628c23b7b233121b22c6c1fc /pest_consume/src | |
parent | fc8fce6facee9bd50958e78f3b177e16ed065c19 (diff) |
Rename parse_children to match_inputs
Diffstat (limited to '')
-rw-r--r-- | pest_consume/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pest_consume/src/lib.rs b/pest_consume/src/lib.rs index 70aee56..7e2c1ca 100644 --- a/pest_consume/src/lib.rs +++ b/pest_consume/src/lib.rs @@ -2,7 +2,7 @@ use pest::error::{Error, ErrorVariant}; use pest::iterators::Pair; use pest::Span; -pub use pest_consume_macros::{make_parser, parse_children}; +pub use pest_consume_macros::{make_parser, match_inputs}; /// Carries a pest Pair alongside custom user data. #[derive(Debug)] |