From 98f1e85c87a76e06682d972b3a83d9335b403c29 Mon Sep 17 00:00:00 2001 From: Ploonet <53194438+Ploonet@users.noreply.github.com> Date: Sun, 12 Nov 2023 15:49:47 +0100 Subject: [PATCH] fix(docs): Typo in libraries exclusion pattern (#4972) Co-authored-by: Antony Mota --- docs/docs/features/libraries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/features/libraries.md b/docs/docs/features/libraries.md index f518a33a53972..1437fb863098e 100644 --- a/docs/docs/features/libraries.md +++ b/docs/docs/features/libraries.md @@ -75,7 +75,7 @@ Some basic examples: - `*.tif` will exclude all files with the extension `.tif` - `hidden.jpg` will exclude all files named `hidden.jpg` - `**/Raw/**` will exclude all files in any directory named `Raw` -- `*.(tif,jpg)` will exclude all files with the extension `.tif` or `.jpg` +- `*.{tif,jpg}` will exclude all files with the extension `.tif` or `.jpg` ### Nightly job