Add a missing comma to PEP 617
This commit is contained in:
parent
caf21bf2b8
commit
f0fe7c4730
|
@ -118,7 +118,7 @@ must be expanded, while a PEG parser will check if the first alternative succeed
|
||||||
and only if it fails, will it continue with the second or the third one in the
|
and only if it fails, will it continue with the second or the third one in the
|
||||||
order in which they are written. This makes the choice operator not commutative.
|
order in which they are written. This makes the choice operator not commutative.
|
||||||
|
|
||||||
Unlike LL(1) parsers PEG-based parsers cannot be ambiguous: if a string parses,
|
Unlike LL(1) parsers, PEG-based parsers cannot be ambiguous: if a string parses,
|
||||||
it has exactly one valid parse tree. This means that a PEG-based parser cannot
|
it has exactly one valid parse tree. This means that a PEG-based parser cannot
|
||||||
suffer from the ambiguity problems described in the previous section.
|
suffer from the ambiguity problems described in the previous section.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue