Skip to content

Commit

Permalink
Merge pull request #247 from steveklabnik/patch-1
Browse files Browse the repository at this point in the history
Remove extraneous `|` in range grammar
  • Loading branch information
isaacs committed Jul 19, 2018
2 parents 44cbc84 + 43ff1c7 commit 6069fe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ logical-or ::= ( ' ' ) * '||' ( ' ' ) *
range ::= hyphen | simple ( ' ' simple ) * | ''
hyphen ::= partial ' - ' partial
simple ::= primitive | partial | tilde | caret
primitive ::= ( '<' | '>' | '>=' | '<=' | '=' | ) partial
primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial
partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )?
xr ::= 'x' | 'X' | '*' | nr
nr ::= '0' | ['1'-'9'] ( ['0'-'9'] ) *
Expand Down

0 comments on commit 6069fe7

Please sign in to comment.