Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
small typo fix
  • Loading branch information
dkm authored Oct 25, 2021
1 parent fb18c9b commit b306a25
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 @@ -197,7 +197,7 @@ When `glob: True`, Dotbot uses [glob.glob](https://docs.python.org/3/library/glo
| `[seq]` | matches any character in `seq` |
| `[!seq]` | matches any character not in `seq` |

However, due to the design of `glob.glob`, using a glob pattern such as `config/*`, will **not** match items that being with `.`. To specifically capture items that being with `.`, you will need to include the `.` in the pattern, like this: `config/.*`.
However, due to the design of `glob.glob`, using a glob pattern such as `config/*`, will **not** match items that begin with `.`. To specifically capture items that being with `.`, you will need to include the `.` in the pattern, like this: `config/.*`.

#### Example

Expand Down

0 comments on commit b306a25

Please sign in to comment.