Index: doc/example-scripts/ruby-mixins.tcl =================================================================== diff -u -r45e24b34c85bf0fc3e14db5250550100bd07ff31 -r12319faaf20df7116346558bd948b0edda9124eb --- doc/example-scripts/ruby-mixins.tcl (.../ruby-mixins.tcl) (revision 45e24b34c85bf0fc3e14db5250550100bd07ff31) +++ doc/example-scripts/ruby-mixins.tcl (.../ruby-mixins.tcl) (revision 12319faaf20df7116346558bd948b0edda9124eb) @@ -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 object mixin Mix} "::Mix" +? {g1 object mixin set 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 object mixin ""} "" +? {g1 object mixin set ""} "" ? {g1 info precedence} "::Group ::Enumerable ::nx::Object" # @@ -213,7 +213,7 @@ # and decorates the instances of +ATeam+ as well the instances of its # specializations (like e.g. +SpecialForce+). -? {ATeam mixin Mix} "::Mix" +? {ATeam mixin set Mix} "::Mix" ? {s1 info precedence} "::Mix ::SpecialForce ::ATeam ::Enumerable ::nx::Object"