Index: doc/tutorial2.html =================================================================== diff -u -r27e11788125901ff468955117d165f70d3871ce0 -rd168a26bce713de8daa5bbe79d740926e961c5bc --- doc/tutorial2.html (.../tutorial2.html) (revision 27e11788125901ff468955117d165f70d3871ce0) +++ doc/tutorial2.html (.../tutorial2.html) (revision d168a26bce713de8daa5bbe79d740926e961c5bc) @@ -507,7 +507,7 @@ Class create Stack { # ... - :object method available_stacks {} { + :class-object method available_stacks {} { return [llength [:info instances]] } } @@ -1436,7 +1436,7 @@

Resembling to objects, information on classes may be gained through the info instance method of the meta-class Class. Note that this instance method does not -only support the class info options, but also the object info options, +only support the class info options, but also the class-object info options, since the accessing command refers to the class-object, which itself is an object and, therefore, offers its informations. The following table summarizes the additional info options available on classes. @@ -2649,7 +2649,7 @@

Introspection on Filters

In order to gain information about the currently registered filters on -a certain object/class, the object info option filters and +a certain object/class, the class-object info option filters and the class info option instfilters may be queried. It returns a list of the currently registered filters:

@@ -2828,7 +2828,7 @@ since the additions may produce other additions as side-effects. This demonstrates clearly that the sub-class mechanism provides only a poor mechanism for mix-in of orthogonal functionality. Therefore we -provide an extension in the form of object mixin classes, which are +provide an extension in the form of class-object mixin classes, which are added in front of the search precedence of classes.

Per-Object Mixins @@ -2910,7 +2910,7 @@

It returns the list of all mix-ins of the object, if pattern -is not specified, otherwise it returns the matching per object mixin classes. +is not specified, otherwise it returns the matching per class-object mixin classes.

The inverse operation of info mixin is mixinof finds