Fix typo.

Akim Demaille
2018-02-06 10:50:02 +01:00
parent af96d16382
commit 7c62f5ad71

@@ -4,7 +4,7 @@
```sh ```sh
echo $1 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 for i in $@; do :; done
``` ```