Skip to content

Commit 3002824

Browse files
committed
update README
1 parent efc7333 commit 3002824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dot-parse/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Stream<String> jsonStringsFrom(Reader input) {
100100
Parser<?> stringLiteral = Parser.quotedStringWithEscapes('"', Object::toString);
101101

102102
// Outside of string literal, any non-quote, non-brace characters are passed through
103-
Parser<?> passThrough = Parser.oneOrMoreCharsIn("[^\"{}]");
103+
Parser<?> passThrough = Parser.oneOrMoreCharsIn("[^\"{}]"); // uses regex-like character set
104104

105105
// Between curly braces, you can have string literals, nested JSON records, or passthrough chars
106106
// For nested curly braces, let's define() it.

0 commit comments

Comments
 (0)