aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Hunkeler <jhunkeler@gmail.com>2014-08-13 00:00:05 -0400
committerJoe Hunkeler <jhunkeler@gmail.com>2014-08-13 00:00:05 -0400
commit45f5dd580a8a8ba834272fcaae7544d0efa05d81 (patch)
tree1921dabd40430c103b1876746e31d3ede9f46bc9
parent170e01d3bb1fafda6c1e1b6f588989af735aaff5 (diff)
downloadcidrchk-45f5dd580a8a8ba834272fcaae7544d0efa05d81.tar.gz
README.md edited online with Bitbucket
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index a391631..5376a74 100644
--- a/README.md
+++ b/README.md
@@ -88,7 +88,7 @@ if ( ${OFFSITE} ) then
endif
```
-The only downside parsing a string rather than an integer is that logical operators will no longer work as expected. `${OFFSITE} > "0"` is not same evaluation as `${OFFSITE} > 0`.
+The downside to parsing a string rather than an integer is logical operators will not work as expected. `${OFFSITE} > "0"` is not the same as evaluating `${OFFSITE} > 0`.
## What about BASH?