diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-06-28 09:38:00 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-06-28 09:38:00 (GMT) |
commit | 0472b619fbc768a10d329b4a3b23ea32370a8d7e (patch) | |
tree | c67ae79354e1afb7d0642c28cfe9e17710adbdc6 /unix | |
parent | 17e23452bfe9efb1a43b841b47af20b29e53d788 (diff) | |
download | tcl-0472b619fbc768a10d329b4a3b23ea32370a8d7e.zip tcl-0472b619fbc768a10d329b4a3b23ea32370a8d7e.tar.gz tcl-0472b619fbc768a10d329b4a3b23ea32370a8d7e.tar.bz2 |
typo's
Diffstat (limited to 'unix')
-rw-r--r-- | unix/dltest/pkgooa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/dltest/pkgooa.c b/unix/dltest/pkgooa.c index 8dea0aa..9f78da8 100644 --- a/unix/dltest/pkgooa.c +++ b/unix/dltest/pkgooa.c @@ -109,7 +109,7 @@ Pkgooa_Init( return TCL_ERROR; } if (tclStubsPtr == NULL) { - Tcl_AppendResult(interp, "Tcl stubs are not inialized, " + Tcl_AppendResult(interp, "Tcl stubs are not initialized, " "did you compile using -DUSE_TCL_STUBS? "); return TCL_ERROR; } @@ -117,11 +117,11 @@ Pkgooa_Init( return TCL_ERROR; } if (tclOOStubsPtr == NULL) { - Tcl_AppendResult(interp, "TclOO stubs are not inialized"); + Tcl_AppendResult(interp, "TclOO stubs are not initialized"); return TCL_ERROR; } if (tclOOIntStubsPtr == NULL) { - Tcl_AppendResult(interp, "TclOO internal stubs are not inialized"); + Tcl_AppendResult(interp, "TclOO internal stubs are not initialized"); return TCL_ERROR; } |