Author: jnthn
Date: 2009-06-08 22:56:30 +0200 (Mon, 08 Jun 2009)
New Revision: 27037

Modified:
   docs/Perl6/Spec/S12-objects.pod
Log:
[spec] Rename :hierarchical option to :tree in the spec for some meta-class 
method, as suggested on p6l.

Modified: docs/Perl6/Spec/S12-objects.pod
===================================================================
--- docs/Perl6/Spec/S12-objects.pod     2009-06-08 20:50:17 UTC (rev 27036)
+++ docs/Perl6/Spec/S12-objects.pod     2009-06-08 20:56:30 UTC (rev 27037)
@@ -1838,7 +1838,7 @@
 parents sorted in MRO (dispatch) order. Other options are:
 
     :local              just returns the immediate parents
-    :hierarchical       the inheritance heirarchy as nested arrays
+    :tree               the inheritance heirarchy as nested arrays
 
 The C<.^methods> method returns method-descriptors containing:
 
@@ -1853,7 +1853,7 @@
 whether you're interested in private methods, and so forth.
 
     :local              only methods defined in the current class
-    :hierarchical       methods by class structure (inheritance hierarchy)
+    :tree               methods by class structure (inheritance hierarchy)
     :private            include private methods
 
 The C<.^attributes> method returns a list of attribute descriptors
@@ -1871,7 +1871,7 @@
 It also takes the parameters:
 
     :local              only methods defined in the current class
-    :hierarchical       attributes by class structure (inheritance hierarchy)
+    :tree               attributes by class structure (inheritance hierarchy)
 
 Strictly speaking, metamethods like C<.isa()>, C<.does()>, and C<.can()>
 should be called through the meta object:

Reply via email to