From b306a25e1360784513d55d1e0227a1d0a04880de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Poulhi=C3=A8s?= Date: Mon, 25 Oct 2021 20:19:41 +0200 Subject: [PATCH] Update README.md small typo fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 026b15d..9cdea47 100644 --- a/README.md +++ b/README.md @@ -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