From: ehilsdal Date: Mon, 9 Feb 2004 15:43:03 +0000 (+0000) Subject: Fix for Bug 51326: mispelled word: "heirarchy" X-Git-Tag: v_preCompileLoopAlteration~43 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e08937198958f6ec67d317e40b875a4848bc3f08;p=aspectj.git Fix for Bug 51326: mispelled word: "heirarchy" --- diff --git a/docs/progGuideDB/gettingstarted.xml b/docs/progGuideDB/gettingstarted.xml index 1a2ebb445..0701d01bd 100644 --- a/docs/progGuideDB/gettingstarted.xml +++ b/docs/progGuideDB/gettingstarted.xml @@ -147,7 +147,7 @@ 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. @@ -514,7 +514,7 @@ after(FigureElement fe, int x, int y) returning: setXY(fe, x, y) { 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 each affected class a method that implements