From 332540699c6046ad32790d81cc8c3343ab4ce8eb Mon Sep 17 00:00:00 2001 From: Ben Adamski Date: Mon, 28 Aug 2017 10:25:06 -0400 Subject: [PATCH] Correct typo in snipper under `Problematic code` -one => +done --- SC2086.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2086.md b/SC2086.md index a9634e7..7beaf03 100644 --- a/SC2086.md +++ b/SC2086.md @@ -4,7 +4,7 @@ ```sh echo $1 -for i in $*; do :; done # this one and the next one also applies to expanding arrays. +for i in $*; do :; done # this done and the next one also applies to expanding arrays. for i in $@; do :; done ```