aboutsummaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-09-14 18:57:02 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-09-14 18:57:02 +1200
commit18224e2351de2a90889072952084395b8b59759d (patch)
treeef6fd2f13ac7aa0aa0342997441715675d443ed0 /README.markdown
parentSafeguards to bail if Bash is just too old (diff)
downloaddotfiles-18224e2351de2a90889072952084395b8b59759d.tar.gz
dotfiles-18224e2351de2a90889072952084395b8b59759d.zip
Technical correction about version history
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.markdown b/README.markdown
index 3ae02e61..adc1e96d 100644
--- a/README.markdown
+++ b/README.markdown
@@ -75,9 +75,9 @@ directory changes all the time depending on the host, and only specific scripts
in it are versioned; the rest are ignored by `.gitignore`.
As I occasionally have work on very old internal systems, my Bash is written to
-work with [any version 2.05a or newer][18]. This is the version in which the
-less error-prone `[[` test syntax was introduced. This is why I use older
-syntax for certain things such as appending items to arrays:
+work with [any version 2.05a or newer][18], a few versions after the less
+error-prone `[[` test syntax was introduced. This is why I use older syntax for
+certain things such as appending items to arrays:
```bash
array=("${array[@]}" "$item")