From c96285844bc73a8999591e93d3b4a076cdc72057 Mon Sep 17 00:00:00 2001 From: itoltz <157147061+itoltz@users.noreply.github.com> Date: Wed, 5 Jun 2024 12:10:51 -0400 Subject: [PATCH] Fixed typos Missed hyphens in two of the yaml examples --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ca3735c9..77375af5 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ Examples: ```yaml - args: - - --exclude files *.md + - --exclude-files *.md ``` This is an array with a single element, `["--exclude files *.md"]`. This probably won't work as you're expecting. @@ -189,7 +189,7 @@ This is an array with a single element, `["--exclude files *.md"]`. This probabl ```yaml - args: - - --exclude files + - --exclude-files - *.md ```