aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/progGuideDB/gettingstarted.xml4
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