We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7574029 commit afd6a52Copy full SHA for afd6a52
src/reader.rs
@@ -265,7 +265,7 @@ pub fn debug_try_read(input: &[u8]) -> IResult<&[u8], Value> {
265
///
266
/// A whitespace is either an ASCII whitespace or a comma.
267
fn consume_clojure_whitespaces(input: &[u8]) -> IResult<&[u8], ()> {
268
- named!(parser, take_while1!(is_clojure_whitespace));
+ named!(parser, take_while!(is_clojure_whitespace));
269
parser(input).map(|(rest, _)| (rest, ()))
270
}
271
0 commit comments