From 7c62f5ad71a98c69f5df5dc80f5e14b96c6f4ed6 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Tue, 6 Feb 2018 10:50:02 +0100 Subject: [PATCH] Fix typo. --- SC2086.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SC2086.md b/SC2086.md index 6e4e7c4..1e0ab40 100644 --- a/SC2086.md +++ b/SC2086.md @@ -4,7 +4,7 @@ ```sh echo $1 -for i in $*; do :; done # this done and the next one also applies to expanding arrays. +for i in $*; do :; done # this one and the next one also apply to expanding arrays. for i in $@; do :; done ``` @@ -102,4 +102,4 @@ FLAGS="-av -e 'ssh -x' --delete --delete-excluded" ... # shellcheck disable=SC2086 eval rsync $FLAGS ~/dir remote_host:dir -``` +``` \ No newline at end of file