summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-01-25 22:56:52 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-01-25 22:56:52 -0500
commite12d8a75e10a03ea65b9073320ace4886168a836 (patch)
treeb081a2bf96ff3498eb5ccc3a69d7b2109c6ab6ed
parent9890617da190b0cac34431d94782f1366eb52781 (diff)
bash-arrays: fix whitespace, typos
-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 8720115..154fbfe 100644
--- a/public/bash-arrays.md
+++ b/public/bash-arrays.md
@@ -166,7 +166,7 @@ To get individual entries, the syntax is
<table>
<caption>
<h1>Getting a single entry from an array</h1>
- <p>Also subject to word splitting if you don't wrap it in
+ <p>Also subject to word splitting if you don't wrap it in
quotes.</p>
</caption>
<tbody>
@@ -282,8 +282,8 @@ anyway.
</tbody>
</table>
-Did notice what was inconsistent? The variables `$*`, `$@`, and `$#`
-behave like the <var>n</var>=0 entry doesn't exist.
+Did you notice what was inconsistent? The variables `$*`, `$@`, and
+`$#` behave like the <var>n</var>=0 entry doesn't exist.
<table>
<caption>