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