Skip to content

Commit

Permalink
Clarify that curly braces only match literally without commas (#44)
Browse files Browse the repository at this point in the history
  • Loading branch information
xuhdev authored Aug 19, 2023
1 parent 0ce8e00 commit e02645d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ special characters for wildcard matching:
* - ``[!seq]``
- any single character not in seq
* - ``{s1,s2,s3}``
- any of the strings given (separated by commas, can be nested)
- any of the strings given (separated by commas, can be nested) (But ``{s1}`` only matches ``{s1}`` literally.)
* - ``{num1..num2}``
- any integer numbers between ``num1`` and ``num2``, where ``num1`` and ``num2``
can be either positive or negative
Expand Down

0 comments on commit e02645d

Please sign in to comment.