diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-03-24 20:19:49 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-03-24 20:19:49 (GMT) |
commit | e27c66d81aa3904b675aa2851d14444b44c9555e (patch) | |
tree | a1b9c9fb440692f02f5b3a355e69ce695216cbf3 /generic/tclBasic.c | |
parent | 5e0c34678e24c5ffe05c8a04f4395416067cefc1 (diff) | |
download | tcl-e27c66d81aa3904b675aa2851d14444b44c9555e.zip tcl-e27c66d81aa3904b675aa2851d14444b44c9555e.tar.gz tcl-e27c66d81aa3904b675aa2851d14444b44c9555e.tar.bz2 |
Fix [15e74a2fe6]: Fix various typos
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 9243539..e075701 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -3525,7 +3525,7 @@ TclCleanupCommand( * the builtin functions. Redefining a builtin function forces all * existing code to be invalidated since that code may be compiled using * an instruction specific to the replaced function. In addition, - * redefioning a non-builtin function will force existing code to be + * redefining a non-builtin function will force existing code to be * invalidated if the number of arguments has changed. * *---------------------------------------------------------------------- @@ -3536,7 +3536,7 @@ Tcl_CreateMathFunc( Tcl_Interp *interp, /* Interpreter in which function is to be * available. */ const char *name, /* Name of function (e.g. "sin"). */ - int numArgs, /* Nnumber of arguments required by + int numArgs, /* Number of arguments required by * function. */ Tcl_ValueType *argTypes, /* Array of types acceptable for each * argument. */ |