Skip to content

Commit

Permalink
Improve documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Newman committed Sep 26, 2020
1 parent a0cac80 commit a48e13d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/amihaiemil/eoyaml/AllYamlLines.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ final class AllYamlLines implements YamlLines {
* Does not handle '?' mapping key or flow mapping
* (https://yaml.org/spec/1.2/spec.html#id2790832).
*
* A sequence is:
* A sequence (group 2) is:
* - [ ]* : 0 or more spaces
* - [\-](|[ ]+.*) : a dash (-) optionally followed by 1 or more
* spaces and any other characters.
*
* A map is:
* - [ ]* : 0 or many spaces followed by:
* A map (group 4) is:
* - [ ]* : 0 or more spaces followed by:
* - a key:
* - ('(?:[^'\\]|\\.)*') : a single (') quoted string or
* - ("(?:[^"\\]|\\.)*") : double (") quoted string
Expand Down

0 comments on commit a48e13d

Please sign in to comment.