aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Borneo <borneo.antonio@gmail.com>2015-11-29 18:28:33 +0800
committerSteve Bennett <steveb@workware.net.au>2015-11-30 09:20:06 +1000
commitee2b03b01aa4148199b6fbc0839462be48e89034 (patch)
tree07034e4a20eee8e05bb74d0dd766204cfcd6505c
parent47737deb06bb404a29bfc5192b0b44dea0d4f453 (diff)
downloadjimtcl-ee2b03b01aa4148199b6fbc0839462be48e89034.zip
jimtcl-ee2b03b01aa4148199b6fbc0839462be48e89034.tar.gz
jimtcl-ee2b03b01aa4148199b6fbc0839462be48e89034.tar.bz2
jim: fix typos in comments
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
-rw-r--r--jim.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/jim.c b/jim.c
index 4a551dd..0c6825f 100644
--- a/jim.c
+++ b/jim.c
@@ -3266,7 +3266,7 @@ typedef struct ScriptToken
* -- the substFlags field of the structure --
*
* The scriptObj structure is used to represent both "script" objects
- * and "subst" objects. In the second case, the there are no LIN and WRD
+ * and "subst" objects. In the second case, there are no LIN and WRD
* tokens. Instead SEP and EOL tokens are added as-is.
* In addition, the field 'substFlags' is used to represent the flags used to turn
* the string into the internal representation.
@@ -8722,7 +8722,7 @@ static int ExprAddLazyOperator(Jim_Interp *interp, ExprByteCode * expr, ParseTok
expr->len += 2;
offset = (expr->len - leftindex) - 1;
- /* Now we rely on the fact the the left and right version have opcodes
+ /* Now we rely on the fact that the left and right version have opcodes
* 1 and 2 after the main opcode respectively
*/
expr->token[leftindex + 1].type = t->type + 1;
@@ -14408,7 +14408,7 @@ static int Jim_InfoCoreCommand(Jim_Interp *interp, int argc, Jim_Obj *const *arg
return JIM_ERR;
}
- /* Test for the the most common commands first, just in case it makes a difference */
+ /* Test for the most common commands first, just in case it makes a difference */
switch (cmd) {
case INFO_EXISTS:
if (argc != 3) {