From d2227f2ef316e426c8a65bb277ec407ddfaa83a1 Mon Sep 17 00:00:00 2001 From: Isaac Good Date: Tue, 12 May 2020 23:06:05 -0700 Subject: [PATCH] Project import generated by Copybara. PiperOrigin-RevId: 311271037 --- shellguide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shellguide.md b/shellguide.md index 0c59fbb..702c751 100644 --- a/shellguide.md +++ b/shellguide.md @@ -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