From 50e3667abf9fe4c9ecafb96553deaee15de37a03 Mon Sep 17 00:00:00 2001 From: prpr19xx Date: Fri, 2 Feb 2024 11:27:56 +0000 Subject: Fix typos. relating to 172b5c4 --- jim_tcl.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jim_tcl.txt b/jim_tcl.txt index 2c5409e..a92ba9f 100644 --- a/jim_tcl.txt +++ b/jim_tcl.txt @@ -2489,11 +2489,11 @@ The following two are identical. set x $(3 * 2 + 1) ---- -However note that the expr shorthand syntax may not be nested in an expression. +However, note that the expr shorthand syntax may not be nested in an expression. This is to prevent the common mistake of writing: ---- - if {$(1 + 2) == 3) { + if {$(1 + 2) == 3} { ... } ---- @@ -2501,7 +2501,7 @@ This is to prevent the common mistake of writing: rather than: ---- - if {(1 + 2) == 3) { + if {(1 + 2) == 3} { ... } ---- -- cgit v1.1