Index: doc/example-scripts/rosetta-singleton.tcl =================================================================== diff -u -N -rf858f142f5fab4f88996b3eb709c3afa55114be9 -rc8cfa996220d610dd859192551ee70984c57a12e --- doc/example-scripts/rosetta-singleton.tcl (.../rosetta-singleton.tcl) (revision f858f142f5fab4f88996b3eb709c3afa55114be9) +++ doc/example-scripts/rosetta-singleton.tcl (.../rosetta-singleton.tcl) (revision c8cfa996220d610dd859192551ee70984c57a12e) @@ -28,7 +28,7 @@ # === A Singleton Meta-class # # Alternatively, we can follow a more generic approach and define a -# metaclass which allows to define several application classes as +# metaclass which allows one to define several application classes as # singletons. The metaclass has the most general metaclass +nx::Class+ # as superclass. In contrary to the example obove, the +create+ method # is not defined as a class method, but it will be inherited to its Index: doc/example-scripts/tutorial-properties.tcl =================================================================== diff -u -N -rb6ec624993fdb4a8cf07a124e83ebb22789f5be8 -rc8cfa996220d610dd859192551ee70984c57a12e --- doc/example-scripts/tutorial-properties.tcl (.../tutorial-properties.tcl) (revision b6ec624993fdb4a8cf07a124e83ebb22789f5be8) +++ doc/example-scripts/tutorial-properties.tcl (.../tutorial-properties.tcl) (revision c8cfa996220d610dd859192551ee70984c57a12e) @@ -51,7 +51,7 @@ # When a property is defined as +incremental+, a public accessor and # multi-valued are assumed. By specifying +incremental+ the # sub-commands +add+ and +delete+ are provided to the accessor, which -# allows to add or delete values to a multi-valued property +# allows one to add or delete values to a multi-valued property # incrementally (see property +z+). The term incrementally means here # that one can e.g. add a value to the list without the need to +get+ # the values of the list in a first step, to +lappend+ the value, and Index: generic/gentclAPI.tcl =================================================================== diff -u -N -r40299a6ff3b3631f275f5f0ba4f90cbdb675d70b -rc8cfa996220d610dd859192551ee70984c57a12e --- generic/gentclAPI.tcl (.../gentclAPI.tcl) (revision 40299a6ff3b3631f275f5f0ba4f90cbdb675d70b) +++ generic/gentclAPI.tcl (.../gentclAPI.tcl) (revision c8cfa996220d610dd859192551ee70984c57a12e) @@ -342,7 +342,7 @@ # Tiny optimization for calls without parameters; # ParseContextExtendObjv() is just called for procs, so no need to # free non-static objvs. Actually, the api for c-methods does - # not allow to generate structures which have to be freed. + # not allow one to generate structures which have to be freed. # we assert this in the code. if {$cDefs ne ""} { set releasePC "ParseContextRelease(&pc);" Index: library/xotcl/doc/langRef.xotcl =================================================================== diff -u -N -r073177c8b1304443107efeeb0c334e9477346778 -rc8cfa996220d610dd859192551ee70984c57a12e --- library/xotcl/doc/langRef.xotcl (.../langRef.xotcl) (revision 073177c8b1304443107efeeb0c334e9477346778) +++ library/xotcl/doc/langRef.xotcl (.../langRef.xotcl) (revision c8cfa996220d610dd859192551ee70984c57a12e) @@ -110,7 +110,7 @@
::xotcl::configure filter ?on|off?<@/tt>
-
allows to +
allows one to turn on or off filters globally for the current interpreter. By default, the filter state is turned off. This function returns the old filter state. @@ -120,7 +120,7 @@
<@tt>::xotcl::configure softrecreate ?on|off?<@/tt>
-
allows to control +
allows one to control what should happen, when an object / a class is recreated. Per default it is set off, which means that the object/class is destroyed and all relations (e.g. subclass/superclass) to other Index: library/xotcl/library/xotcl2.tcl =================================================================== diff -u -N -r8f15a5f377b42426e7d1cedea575ae356d9368da -rc8cfa996220d610dd859192551ee70984c57a12e --- library/xotcl/library/xotcl2.tcl (.../xotcl2.tcl) (revision 8f15a5f377b42426e7d1cedea575ae356d9368da) +++ library/xotcl/library/xotcl2.tcl (.../xotcl2.tcl) (revision c8cfa996220d610dd859192551ee70984c57a12e) @@ -219,7 +219,7 @@ # This bypassing feature comes handy when streaming an object into a # scripted form (e.g., by using the bundled Serializer). Upon # deserializing the object, using the {{{noinit}}} flag helps you to - # preserve the serialized object state (rather then having the + # preserve the serialized object state (rather than having the # object re-initialized). # @method ::xotcl::Object#requireNamespace