Index: doc/next-migration.txt =================================================================== diff -u -N -ra11d866d48c3ced35ec09fe74ddc12b58b6ef928 -r308645320ba8b2d4fa4d34b07ab8b6bf6c353738 --- doc/next-migration.txt (.../next-migration.txt) (revision a11d866d48c3ced35ec09fe74ddc12b58b6ef928) +++ doc/next-migration.txt (.../next-migration.txt) (revision 308645320ba8b2d4fa4d34b07ab8b6bf6c353738) @@ -1107,7 +1107,7 @@ |[source,tcl] ---------------- -# Define a object variable "V" with value 100 and +# Define an object variable "V" with value 100 and # an instance variable "x". "V" is defined for the # class object Foo, "x" is defined in the # instances of the class. "object variable" works Index: doc/next-tutorial/next-tutorial.txt =================================================================== diff -u -N -ra11d866d48c3ced35ec09fe74ddc12b58b6ef928 -r308645320ba8b2d4fa4d34b07ab8b6bf6c353738 --- doc/next-tutorial/next-tutorial.txt (.../next-tutorial.txt) (revision a11d866d48c3ced35ec09fe74ddc12b58b6ef928) +++ doc/next-tutorial/next-tutorial.txt (.../next-tutorial.txt) (revision 308645320ba8b2d4fa4d34b07ab8b6bf6c353738) @@ -500,7 +500,7 @@ Stack create s4 { # - # Create a stack with a object-specific method + # Create a stack with an object-specific method # to check the type of entries # @@ -1271,7 +1271,7 @@ +baz+ defined on the object +o1+. An object method is defined via +object method+. -Note that we can define a object method that shadows (redefines) +Note that we can define an object method that shadows (redefines) for this object methods provided from classes. [[xmp-object-applicable1]] @@ -1536,8 +1536,8 @@ The invocation flag +-local+ means that the method has to be resolved from the same place, where the current method is defined. Since the -current method is defined as a object method, +foo+ is resolved as -a object method. The effect is that the mixin definitions are +current method is defined as an object method, +foo+ is resolved as +an object method. The effect is that the mixin definitions are ignored. The invocation flag +-local+ was already introduced in the section about method protection, where it was used to call _private_ methods. Index: library/lib/make.tcl =================================================================== diff -u -N -r7a2dc79d85363f59bcf225cd715589c6f69d45a0 -r308645320ba8b2d4fa4d34b07ab8b6bf6c353738 --- library/lib/make.tcl (.../make.tcl) (revision 7a2dc79d85363f59bcf225cd715589c6f69d45a0) +++ library/lib/make.tcl (.../make.tcl) (revision 308645320ba8b2d4fa4d34b07ab8b6bf6c353738) @@ -201,7 +201,7 @@ if {[catch {:create main} errorMsg]} { puts stderr "*** $errorMsg" - # Exit silently, alltough we are leaving from an active stack + # Exit silently, although we are leaving from an active stack # frame. ::nsf::configure debug 0 exit -1 Index: tests/parameters.test =================================================================== diff -u -N -r5bcb005ea31a89167ea237f47dffb0c0166bd2c9 -r308645320ba8b2d4fa4d34b07ab8b6bf6c353738 --- tests/parameters.test (.../parameters.test) (revision 5bcb005ea31a89167ea237f47dffb0c0166bd2c9) +++ tests/parameters.test (.../parameters.test) (revision 308645320ba8b2d4fa4d34b07ab8b6bf6c353738) @@ -1852,7 +1852,7 @@ # Did the object survive the error? Should not. ? {::nsf::is object c2} 0 - # The following should run through without erros + # The following should run through without errors ? {C create c3 -y 1 -x 0} "::c3" ? {set ::_} "passed args ''" ? {c3 cget -x} "0"