From 9db5dcc6a3db69db877031ec70c3290b96027680 Mon Sep 17 00:00:00 2001 From: Michael Siegel Date: Sun, 22 Sep 2019 14:14:37 +0000 Subject: [PATCH] =?UTF-8?q?Add=20missing=20=E2=80=9Cof=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SC2155.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2155.md b/SC2155.md index 0d29175..e7f83b5 100644 --- a/SC2155.md +++ b/SC2155.md @@ -45,7 +45,7 @@ foo=$(mycmd) ### Rationale -The exit status of the command is overridden by the exit status of the creation the local variable. For example: +The exit status of the command is overridden by the exit status of the creation of the local variable. For example: ```bash $ f() { local foo=$(false) || echo foo; }; f