Index: doc/Object.man =================================================================== diff -u -N -rf7541b47c3ce25af7e0832f3801e8b1aca7ad2aa -r8024df76962dab57646dc206e07a7ae66e7990ad --- doc/Object.man (.../Object.man) (revision f7541b47c3ce25af7e0832f3801e8b1aca7ad2aa) +++ doc/Object.man (.../Object.man) (revision 8024df76962dab57646dc206e07a7ae66e7990ad) @@ -156,7 +156,7 @@ [arg obj]. The configuration options available for querying through [method cget] are determined by the configurable properties defined by the class hierarchy of [arg obj]. The -queriable configuration options for [arg obj] can be +queryable configuration options for [arg obj] can be obtained by calling [method "info lookup syntax configure"]. The [arg configurationOption] can be set and modified using [method configure]. Index: generic/nsfAccessInt.h =================================================================== diff -u -N -r8f7c25f980c5433948a27be3cab5bb15d754b921 -r8024df76962dab57646dc206e07a7ae66e7990ad --- generic/nsfAccessInt.h (.../nsfAccessInt.h) (revision 8f7c25f980c5433948a27be3cab5bb15d754b921) +++ generic/nsfAccessInt.h (.../nsfAccessInt.h) (revision 8024df76962dab57646dc206e07a7ae66e7990ad) @@ -68,7 +68,7 @@ #define Tcl_Command_refCount(cmd) ((Command *)(cmd))->refCount #define Tcl_Command_cmdEpoch(cmd) ((Command *)(cmd))->cmdEpoch #define Tcl_Command_flags(cmd) ((Command *)(cmd))->flags -/* the following items could be obtained from +/* the following items could be obtained from Tcl_GetCommandInfoFromToken(cmd, infoPtr) */ #define Tcl_Command_nsPtr(cmd) ((Tcl_Namespace*)(((Command *)(cmd))->nsPtr)) #define Tcl_Command_objProc(cmd) ((Command *)(cmd))->objProc @@ -81,9 +81,9 @@ #define Tcl_Command_deleteProc(cmd) ((Command *)(cmd))->deleteProc #define Tcl_Command_deleteData(cmd) ((Command *)(cmd))->deleteData -/* +/* * The offsetof() macro is an ANSI C library feature. - * Workaround for platforms missing offsetof(), e.g. VC++ 6.0 + * Workaround for platforms missing offsetof(), e.g. VC++ 6.0 */ #ifndef offsetof # define offsetof(type, field) ((size_t) ((char *) &((type *) 0)->field)) @@ -107,7 +107,3 @@ #if !defined(Tcl_HashSize) # define Tcl_HashSize(tablePtr) ((tablePtr)->numEntries) #endif - - - - Index: library/xotcl/apps/comm/webserver.xotcl =================================================================== diff -u -N -rb9fcdec2a4d614ee624d548218df4719cdb27049 -r8024df76962dab57646dc206e07a7ae66e7990ad --- library/xotcl/apps/comm/webserver.xotcl (.../webserver.xotcl) (revision b9fcdec2a4d614ee624d548218df4719cdb27049) +++ library/xotcl/apps/comm/webserver.xotcl (.../webserver.xotcl) (revision 8024df76962dab57646dc206e07a7ae66e7990ad) @@ -51,7 +51,7 @@ Class SpecializedWorker -superclass Httpd::Wrk @ SpecializedWorker instproc respond {} { description { This method handles all responses from the webserver to the client. - We implent here "exit", and we return the information about the actual + We implement here "exit", and we return the information about the actual request and user in HTML format for all other requests.

This method is an example, how to access on the server side request specific information. Index: library/xotcl/library/lib/htmllib.xotcl =================================================================== diff -u -N -r657e8c12562093e0b9c01eacc240cba1e4e09711 -r8024df76962dab57646dc206e07a7ae66e7990ad --- library/xotcl/library/lib/htmllib.xotcl (.../htmllib.xotcl) (revision 657e8c12562093e0b9c01eacc240cba1e4e09711) +++ library/xotcl/library/lib/htmllib.xotcl (.../htmllib.xotcl) (revision 8024df76962dab57646dc206e07a7ae66e7990ad) @@ -391,7 +391,7 @@ ## startUnorderedList - start a UL element ## Optional arguments: - ## Commmon HTML arguments + ## Common HTML arguments HtmlBuilder instproc startUnorderedList {args} { set attributes [HtmlBuilder parseArguments $args [list] [list]] Index: library/xotcl/library/lib/makeDoc.xotcl =================================================================== diff -u -N -ra963e8896fd07c345ccfa034cbd043344edbf083 -r8024df76962dab57646dc206e07a7ae66e7990ad --- library/xotcl/library/lib/makeDoc.xotcl (.../makeDoc.xotcl) (revision a963e8896fd07c345ccfa034cbd043344edbf083) +++ library/xotcl/library/lib/makeDoc.xotcl (.../makeDoc.xotcl) (revision 8024df76962dab57646dc206e07a7ae66e7990ad) @@ -62,7 +62,7 @@ # XOTcl - Documentation # # -#

Lanuage Reference - Index

+#

Language Reference - Index

set content { Index: tests/destroy.test =================================================================== diff -u -N -r2a955681817e4db4776d7ae904babe8053c5ad74 -r8024df76962dab57646dc206e07a7ae66e7990ad --- tests/destroy.test (.../destroy.test) (revision 2a955681817e4db4776d7ae904babe8053c5ad74) +++ tests/destroy.test (.../destroy.test) (revision 8024df76962dab57646dc206e07a7ae66e7990ad) @@ -240,7 +240,7 @@ ? {::nsf::object::exists test::c1} 0 "object still exists after proc" ? "set ::firstDestroy" 1 "firstDestroy called" -? "set ::ObjectDestroy" 1 "destroy was called when poping stack frame" +? "set ::ObjectDestroy" 1 "destroy was called when popping stack frame" ? {::nsf::object::exists ::test::C} 0 "class still exists after proc" ? {namespace exists ::test::C} 0 "namespace ::test::C still exists after proc" ? {namespace exists ::test} 1 "parent ::test namespace still exists after proc" @@ -657,7 +657,7 @@ test::c1 foo ? {::nsf::object::exists test::c1} 0 "object still exists after proc" ? "set ::firstDestroy" 1 "firstDestroy called" -? "set ::ObjectDestroy" 1 "destroy was called when poping stack frame" +? "set ::ObjectDestroy" 1 "destroy was called when popping stack frame" ? {::nsf::object::exists ::test::C} 0 "class still exists after proc" ? {namespace exists ::test::C} 0 "namespace ::test::C still exists after proc" ? {namespace exists ::test} 1 "parent ::test namespace still exists after proc" Index: tests/doc.test =================================================================== diff -u -N -r357028ca6e4ffd7ec4ed240e75c9c001f9c4a8cc -r8024df76962dab57646dc206e07a7ae66e7990ad --- tests/doc.test (.../doc.test) (revision 357028ca6e4ffd7ec4ed240e75c9c001f9c4a8cc) +++ tests/doc.test (.../doc.test) (revision 8024df76962dab57646dc206e07a7ae66e7990ad) @@ -1036,7 +1036,7 @@ # @.property attr1 # - # This property 1 will be invisibile in the generated doc + # This property 1 will be invisible in the generated doc # # @stashed :property attr1 Index: tests/info-method.test =================================================================== diff -u -N -r8e2e356e9bcef39f43dfe3690b82d9586c7adc72 -r8024df76962dab57646dc206e07a7ae66e7990ad --- tests/info-method.test (.../info-method.test) (revision 8e2e356e9bcef39f43dfe3690b82d9586c7adc72) +++ tests/info-method.test (.../info-method.test) (revision 8024df76962dab57646dc206e07a7ae66e7990ad) @@ -173,10 +173,10 @@ } # -# Test visability of obj-objects +# Test visibility of obj-objects # -nx::test case visability-sub-objects { +nx::test case visibility-sub-objects { ::nx::Object create o { ::nx::Object create [::nx::self]::sub { :object method foo {} {;} @@ -193,9 +193,9 @@ } # -# Test visability of aliased Objects +# Test visibility of aliased Objects # -nx::test case visability-aliased-object { +nx::test case visibility-aliased-object { ::nx::Object create ::I ::nx::Class create C { :public alias i ::I @@ -1193,7 +1193,7 @@ # # Testing "... info method origin ..." (in contrast to "... info method -# handle ..."). "origin" always points to the definintion handle, +# handle ..."). "origin" always points to the definition handle, # "handle" alone is the registration handle. # Index: tests/methods.test =================================================================== diff -u -N -rfe42ee0cfabddf7932137759180bf19c9e4c22b2 -r8024df76962dab57646dc206e07a7ae66e7990ad --- tests/methods.test (.../methods.test) (revision fe42ee0cfabddf7932137759180bf19c9e4c22b2) +++ tests/methods.test (.../methods.test) (revision 8024df76962dab57646dc206e07a7ae66e7990ad) @@ -53,7 +53,7 @@ # There is no tangible difference between a bareword and a one-element - # list in Tcl (singelton list). So, there will remain exotique method + # list in Tcl (singleton list). So, there will remain exotique method # names including curly braces, along with other peculiar names, # e.g. those starting with #. ? {set ::h [nsf::method::create ::C {{{{{a}}}}} {} {;}]} {::nsf::classes::C::{{{{a}}}}} Index: tests/object-system.test =================================================================== diff -u -N -rfaa3eeb74515d10278bb6f055ecb374791211248 -r8024df76962dab57646dc206e07a7ae66e7990ad --- tests/object-system.test (.../object-system.test) (revision faa3eeb74515d10278bb6f055ecb374791211248) +++ tests/object-system.test (.../object-system.test) (revision 8024df76962dab57646dc206e07a7ae66e7990ad) @@ -326,7 +326,7 @@ ? {::nsf::relation::get ::class class} ::class ? {::nsf::relation::get ::class superclass} ::object -# define non-standard methos to create/destroy objects and classes +# define non-standard methods to create/destroy objects and classes ::nsf::method::alias ::class + ::nsf::methods::class::create ::nsf::method::alias ::object - ::nsf::methods::object::destroy Index: tests/protected.test =================================================================== diff -u -N -r8e2e356e9bcef39f43dfe3690b82d9586c7adc72 -r8024df76962dab57646dc206e07a7ae66e7990ad --- tests/protected.test (.../protected.test) (revision 8e2e356e9bcef39f43dfe3690b82d9586c7adc72) +++ tests/protected.test (.../protected.test) (revision 8024df76962dab57646dc206e07a7ae66e7990ad) @@ -387,7 +387,7 @@ ? {nx::dispatch c1 p3} "B.p3" # via dispatch, the local flag uses (as always) the context of the - # currently execting class, which is not provided below + # currently executing class, which is not provided below ? {nx::dispatch c1 -local p1} "::c1: unable to dispatch method 'p1'" } Index: tests/tcloo.test =================================================================== diff -u -N -r3c7374ae99f75bf87d5bb61ff070aba5d6f608bf -r8024df76962dab57646dc206e07a7ae66e7990ad --- tests/tcloo.test (.../tcloo.test) (revision 3c7374ae99f75bf87d5bb61ff070aba5d6f608bf) +++ tests/tcloo.test (.../tcloo.test) (revision 8024df76962dab57646dc206e07a7ae66e7990ad) @@ -9,7 +9,7 @@ # export | unexport # # TclOO provides a bulk declarator to export (i.e., make -# visibile and accessible) and to unexport (i.e., make invisible and +# visible and accessible) and to unexport (i.e., make invisible and # inaccessible) method features of an object, a class, or a class # hierarchy. Note that export and unexport go beyond applying mere # visibility/accessibility modifiers; it is also about extending or