From 653ed63a2b6ed73460f6a0daf1ca184e7dcafb45 Mon Sep 17 00:00:00 2001 From: Dan Christensen Date: Wed, 1 Feb 2023 08:21:05 -0600 Subject: [PATCH] Fix POSIX capitalization in description --- SC2086.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2086.md b/SC2086.md index 590a872..f8400d9 100644 --- a/SC2086.md +++ b/SC2086.md @@ -66,7 +66,7 @@ make_with_flags() { make_with_flags file ``` -To split on spaces but not perform glob expansion, Posix has a `set -f` to disable globbing. You can disable word splitting by setting `IFS=''`. +To split on spaces but not perform glob expansion, POSIX has a `set -f` to disable globbing. You can disable word splitting by setting `IFS=''`. Similarly, you might want an optional argument: