summaryrefslogtreecommitdiff
path: root/public/bash-arrays.md
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-10-13 16:26:12 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-10-13 16:26:12 -0400
commit8303f7626e61d6aeadc5ccf04bda12474acb6cd5 (patch)
tree2703760be847bb3510f3ffbeea4dbdb0a9e2fb2f /public/bash-arrays.md
parent302323180f66e688b814c47197dc7adac99de679 (diff)
spell check
Diffstat (limited to 'public/bash-arrays.md')
-rw-r--r--public/bash-arrays.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/public/bash-arrays.md b/public/bash-arrays.md
index 480d168..e78b8d5 100644
--- a/public/bash-arrays.md
+++ b/public/bash-arrays.md
@@ -7,7 +7,7 @@ that if you need arrays, you shouldn't be using Bash. If we reject
the notion that one should never use Bash for scripting, then thinking
you don't need Bash arrays is what I like to call "wrong".
-The simple expanation of why everybody who programs in Bash needs to
+The simple explanation of why everybody who programs in Bash needs to
understand arrays is this: command line arguments are exposed as an
array. Does your script take any arguments on the command line?
Great, you need to work with an array!
@@ -53,7 +53,7 @@ difference between `@` and `*`.
</tr><tr>
<td><code>"${array[*]}"</code></td>
<td>Returns every element of the array in a single
- whitepace-separated string.</td>
+ whitespace-separated string.</td>
</tr>
</tbody>
</table>
@@ -153,7 +153,7 @@ with letters and underscore), that *mostly* match up with the normal
array syntax.
Setting the arguments array, on the other hand, is pretty different.
-That's fine, because setting the arguments array is less usefull
+That's fine, because setting the arguments array is less useful
anyway.
<table>