commit | 1ae1fb1cf471f471f261944f8c5e554b2d05539b | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Tue Jan 16 18:51:48 2018 -0800 |
committer | GitHub <noreply@github.com> | Tue Jan 16 18:51:48 2018 -0800 |
tree | c063837cd3278368f9fb1eaef5fba48d3fc35c23 | |
parent | 5680dcc26cbfce6b8590e898df884f47d03c8bed [diff] | |
parent | ff82d0971d3e5605171307050f783a42284505ba [diff] |
Merge pull request #332 from zmitchell/parens-typo Fix typo (CONENT -> CONTENT)
diff --git a/src/parsers.rs b/src/parsers.rs index de6c168..4738502 100644 --- a/src/parsers.rs +++ b/src/parsers.rs
@@ -1269,7 +1269,7 @@ /// the parentheses in order for this parser to return successfully. /// /// - **Syntax:** `parens!(CONTENT)` -/// - **Output:** `(token::Paren, CONENT)` +/// - **Output:** `(token::Paren, CONTENT)` /// /// ```rust /// #[macro_use]