Index: doc/Class.man =================================================================== diff -u -rf8df1c79bb16a804b8c8968c2c34a0b522ab89c4 -r83a7bb902541cfc514ccaba9e21858d461a1d602 --- doc/Class.man (.../Class.man) (revision f8df1c79bb16a804b8c8968c2c34a0b522ab89c4) +++ doc/Class.man (.../Class.man) (revision 83a7bb902541cfc514ccaba9e21858d461a1d602) @@ -413,7 +413,7 @@ 102 [example_end] -Alternatively, the object [arg instance] may define an per-object +Alternatively, the object [arg instance] may define a per-object [method init] on its own. A per-object [method init] can be chained to a class-level [method init] using [cmd nx::next], just like a regular method. Index: doc/next-migration.txt =================================================================== diff -u -rc6816ddd8f161680aa286d56235737f1fc27fe79 -r83a7bb902541cfc514ccaba9e21858d461a1d602 --- doc/next-migration.txt (.../next-migration.txt) (revision c6816ddd8f161680aa286d56235737f1fc27fe79) +++ doc/next-migration.txt (.../next-migration.txt) (revision 83a7bb902541cfc514ccaba9e21858d461a1d602) @@ -504,7 +504,7 @@ accessor functions are used normally internally when object-specific parameters are defined (see Section 3.4). -In NX forwarders are called +forward+. NX does not provide an public +In NX forwarders are called +forward+. NX does not provide a public available method to define variable accessors like +parametercmd+ in XOTcl, but use internally the Next Scripting Framework primitive +nsf::method::setter+ when appropriate. @@ -1087,7 +1087,7 @@ constructor +init+, NX follows a more declarative approach. Often, classes have superclasses, which often want to provide their own instance variables and default values. The declarative approach from -NX solves this via inheritance, while an procedural approach via +NX solves this via inheritance, while a procedural approach via assign statements in the constructor requires explicit constructor calls, which are often error-prone. Certainly, when a user prefers to assign initial values to instance variables via explicit assign @@ -1426,7 +1426,7 @@ XOTcl. While very for every +property+ in NX, a slot object is created, for performance reasons, not every +variable+ has a slot associated. -When an property is created, NX does actually three things: +When a property is created, NX does actually three things: . Create a slot object, which can be specified in more detail using the init-block of the slot object @@ -2969,7 +2969,7 @@ XOTcl 1 NSF does not allow one to redefined a pre-existing command (e.g. "set") with an object and vice versa. Like in XOTcl 1, preexisting objects and classes con be redefined (necessary for -reloading objects/classes in an running interpreter). +reloading objects/classes in a running interpreter). ==== Info heritage