tutorial: arrays as a synonym for lists

Closes https://github.com/fish-shell/fish-site/issues/13

[skip ci]
This commit is contained in:
David Adam
2015-07-23 18:43:57 +08:00
parent 27be004c64
commit 4401abb166

View File

@@ -251,7 +251,7 @@ Unlike other shells, variables are not further split after substitution:
<outp>Mister Noodle</outp>
\endfish
In bash, this would have created two directories "Mister" and "Noodle". In `fish`, it created only one: the variable had the value "Mister Noodle", so that is the argument that was passed to `mkdir`, spaces and all.
In bash, this would have created two directories "Mister" and "Noodle". In `fish`, it created only one: the variable had the value "Mister Noodle", so that is the argument that was passed to `mkdir`, spaces and all. Other shells use the term "arrays", rather than lists.
\section tut_exit_status Exit Status