summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>