From d5ef89f0c9f479f1b82ea66b39a20273e4cda6fc Mon Sep 17 00:00:00 2001 From: Usman Date: Wed, 10 May 2023 17:40:26 +0200 Subject: [PATCH] docs: Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2241bab2..3c97a02f 100644 --- a/README.md +++ b/README.md @@ -337,7 +337,7 @@ A number indicating the level of optimization that should be done to the pattern prior to parsing and using it for matches. Globstar parts `**` are always converted to `*` when `noglobstar` -is set, and multiple adjascent `**` parts are converted into a +is set, and multiple adjacent `**` parts are converted into a single `**` (ie, `a/**/**/b` will be treated as `a/**/b`, as this is equivalent in all cases).