summaryrefslogtreecommitdiff
path: root/pest_consume/src/lib.rs
diff options
context:
space:
mode:
authorNadrieril2019-09-17 19:59:22 +0200
committerNadrieril2019-09-17 20:01:52 +0200
commitf8341503c778db92f46fa9f6f368a2013e4c0c1a (patch)
treefad5157c68ff56cc215bff1e9b6b9be1b6acc0a4 /pest_consume/src/lib.rs
parentf040f12e67f4da03773c4b28934ceefeb1c5b8b8 (diff)
Change invocation syntax of pest_consume::parser macro
Diffstat (limited to 'pest_consume/src/lib.rs')
-rw-r--r--pest_consume/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/pest_consume/src/lib.rs b/pest_consume/src/lib.rs
index a161d3f..c1d62e5 100644
--- a/pest_consume/src/lib.rs
+++ b/pest_consume/src/lib.rs
@@ -32,7 +32,7 @@
//! struct CSVParser;
//!
//! // This is the other half of the parser, using pest_consume.
-//! #[pest_consume::parser(CSVParser, Rule)]
+//! #[pest_consume::parser]
//! impl CSVParser {
//! fn EOI(_input: Node) -> Result<()> {
//! Ok(())