diff --git a/parser-utils/src/lib.rs b/parser-utils/src/lib.rs index 6ea176f5..6c248f2f 100644 --- a/parser-utils/src/lib.rs +++ b/parser-utils/src/lib.rs @@ -13,11 +13,11 @@ extern crate combine; use combine::ParseResult; use combine::combinator::{Expected, FnParser}; -// A type definition for a function parser that either parses an `O` from an input stream of type -// `I`, or fails with an "expected" failure. -// See for more -// illumination. -// Nothing about this is specific to the result type of the parser. +/// A type definition for a function parser that either parses an `O` from an input stream of type +/// `I`, or fails with an "expected" failure. +/// See for more +/// illumination. +/// Nothing about this is specific to the result type of the parser. pub type ResultParser = Expected ParseResult>>; /// `assert_parses_to!` simplifies some of the boilerplate around running a