Add a missing comma to PEP 617

This commit is contained in:
Brett Cannon 2020-04-16 15:16:52 -07:00 committed by GitHub
parent caf21bf2b8
commit f0fe7c4730
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.