]> source.dussan.org Git - aspectj.git/commitdiff
Fix for Bug 51326: mispelled word: "heirarchy"
authorehilsdal <ehilsdal>
Mon, 9 Feb 2004 15:43:03 +0000 (15:43 +0000)
committerehilsdal <ehilsdal>
Mon, 9 Feb 2004 15:43:03 +0000 (15:43 +0000)
docs/progGuideDB/gettingstarted.xml

index 1a2ebb445e361d4f8bd4f7155807fb4c4b66dbbd..0701d01bd65b79291532f8410a22c13955b485e9 100644 (file)
       only a few new constructs: pointcuts, advice, inter-type declarations
       and aspects.  Pointcuts and advice dynamically affect program flow,
       inter-type declarations statically affects a program's class
-      heirarchy, and aspects encapsulate these new constructs.
+      hierarchy, and aspects encapsulate these new constructs.
     </para>
 
     <para>
@@ -514,7 +514,7 @@ after(FigureElement fe, int x, int y) returning: setXY(fe, x, y) {
 
       <para>
         Consider the problem of expressing a capability shared by some
-        existing classes that are already part of a class heirarchy,
+        existing classes that are already part of a class hierarchy,
         i.e. they already extend a class.  In Java, one creates an
         interface that captures this new capability, and then adds to
         <emphasis>each affected class</emphasis> a method that implements