diff options
author | Joe Hunkeler <jhunkeler@gmail.com> | 2014-08-13 00:00:05 -0400 |
---|---|---|
committer | Joe Hunkeler <jhunkeler@gmail.com> | 2014-08-13 00:00:05 -0400 |
commit | 45f5dd580a8a8ba834272fcaae7544d0efa05d81 (patch) | |
tree | 1921dabd40430c103b1876746e31d3ede9f46bc9 | |
parent | 170e01d3bb1fafda6c1e1b6f588989af735aaff5 (diff) | |
download | cidrchk-45f5dd580a8a8ba834272fcaae7544d0efa05d81.tar.gz |
README.md edited online with Bitbucket
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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?
|