Merge pull request #549 from google/change_HEAD

Project import generated by Copybara.
pull/551/head
Isaac Good 2020-05-12 23:36:27 -07:00 committed by GitHub
commit 7a59e424c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -936,7 +936,7 @@ statement, and otherwise be wary of its expression evaluating to zero
```shell
# Simple calculation used as text - note the use of $(( … )) within
# a string.
echo "$(( 2 + 2 )) is 4!?"
echo "$(( 2 + 2 )) is 4"
# When performing arithmetic comparisons for testing
if (( a < b )); then