Index: doc/example-scripts/ruby-mixins.tcl =================================================================== diff -u -r0f57269d982e98ad81b82a12a5ab5b936784813f -rf858f142f5fab4f88996b3eb709c3afa55114be9 --- doc/example-scripts/ruby-mixins.tcl (.../ruby-mixins.tcl) (revision 0f57269d982e98ad81b82a12a5ab5b936784813f) +++ doc/example-scripts/ruby-mixins.tcl (.../ruby-mixins.tcl) (revision f858f142f5fab4f88996b3eb709c3afa55114be9) @@ -124,14 +124,14 @@ # the precedence list. A decorator is able to modify the behavior of # all of the methods of the class, where it is mixed into. -? {g1 mixin Mix} "::Mix" +? {g1 object mixin Mix} "::Mix" ? {g1 info precedence} "::Mix ::Group ::Enumerable ::nx::Object" ? {g1 count} {alpha 3 omega} # For the time being, remove the mixin class again. -? {g1 mixin ""} "" +? {g1 object mixin ""} "" ? {g1 info precedence} "::Group ::Enumerable ::nx::Object" #