diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-10-22 18:36:42 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2018-10-22 18:36:42 (GMT) |
commit | 86013715f6a114cd89394f52ed82e18d58813c77 (patch) | |
tree | e30af57a0adb7954d519846ef5d8100df04ce33a | |
parent | cee756478e65a985a7c60c9b457748de69693007 (diff) | |
download | tcl-86013715f6a114cd89394f52ed82e18d58813c77.zip tcl-86013715f6a114cd89394f52ed82e18d58813c77.tar.gz tcl-86013715f6a114cd89394f52ed82e18d58813c77.tar.bz2 |
Missing ',' in documentation (discovered by MacOSX help processing). Some whitespacing
-rw-r--r-- | doc/CrtObjCmd.3 | 2 | ||||
-rw-r--r-- | generic/tclOO.c | 2 | ||||
-rw-r--r-- | generic/tclUtil.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/CrtObjCmd.3 b/doc/CrtObjCmd.3 index 87ce07e..2cd9222 100644 --- a/doc/CrtObjCmd.3 +++ b/doc/CrtObjCmd.3 @@ -8,7 +8,7 @@ .so man.macros .BS .SH NAME -Tcl_CreateObjCommand, Tcl_DeleteCommand, Tcl_DeleteCommandFromToken, Tcl_GetCommandInfo, Tcl_GetCommandInfoFromToken, Tcl_SetCommandInfo, Tcl_SetCommandInfoFromToken, Tcl_GetCommandName, Tcl_GetCommandFullName, Tcl_GetCommandFromObj Tcl_RegisterCommandTypeName, Tcl_GetCommandTypeName \- implement new commands in C +Tcl_CreateObjCommand, Tcl_DeleteCommand, Tcl_DeleteCommandFromToken, Tcl_GetCommandInfo, Tcl_GetCommandInfoFromToken, Tcl_SetCommandInfo, Tcl_SetCommandInfoFromToken, Tcl_GetCommandName, Tcl_GetCommandFullName, Tcl_GetCommandFromObj, Tcl_RegisterCommandTypeName, Tcl_GetCommandTypeName \- implement new commands in C .SH SYNOPSIS .nf \fB#include <tcl.h>\fR diff --git a/generic/tclOO.c b/generic/tclOO.c index 0c18390..2491c2f 100644 --- a/generic/tclOO.c +++ b/generic/tclOO.c @@ -1237,7 +1237,7 @@ ObjectNamespaceDeleted( /* * Because an object can be a class that is an instance of itself, the * class object's class structure should only be cleaned after most of - * the cleanup on the object is done. + * the cleanup on the object is done. * * The class of objects needs some special care; if it is deleted (and * we're not killing the whole interpreter) we force the delete of the diff --git a/generic/tclUtil.c b/generic/tclUtil.c index 4ea9c2e..385bdd3 100644 --- a/generic/tclUtil.c +++ b/generic/tclUtil.c @@ -3660,7 +3660,7 @@ TclFormatInt( * GetWideForIndex -- * * This function produces a wide integer value corresponding to the - * list index held in *objPtr. The parsing supports all values + * list index held in *objPtr. The parsing supports all values * recognized as any size of integer, and the syntaxes end[-+]$integer * and $integer[-+]$integer. The argument endValue is used to give * the meaning of the literal index value "end". |