diff options
author | ehilsdal <ehilsdal> | 2004-02-09 15:43:03 +0000 |
---|---|---|
committer | ehilsdal <ehilsdal> | 2004-02-09 15:43:03 +0000 |
commit | e08937198958f6ec67d317e40b875a4848bc3f08 (patch) | |
tree | a7e9b31bae09f98d7228fca9f2a48f1a35071e6e /docs/progGuideDB | |
parent | 775d1175b7da80535cc48d22cb424239d76594bf (diff) | |
download | aspectj-e08937198958f6ec67d317e40b875a4848bc3f08.tar.gz aspectj-e08937198958f6ec67d317e40b875a4848bc3f08.zip |
Fix for Bug 51326: mispelled word: "heirarchy"
Diffstat (limited to 'docs/progGuideDB')
-rw-r--r-- | docs/progGuideDB/gettingstarted.xml | 4 |
1 files changed, 2 insertions, 2 deletions
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. </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 |