aboutsummaryrefslogtreecommitdiffstats
path: root/docs/progGuideDB
diff options
context:
space:
mode:
authoraclement <aclement>2008-08-14 17:32:41 +0000
committeraclement <aclement>2008-08-14 17:32:41 +0000
commit8de760d6979b047eb9d3d490302bc0f5967d3aab (patch)
treeee95708b812fb11731f639b8496cf59eb17ff2fd /docs/progGuideDB
parent9e759ec041041529c028606a3df438102acc37e8 (diff)
downloadaspectj-8de760d6979b047eb9d3d490302bc0f5967d3aab.tar.gz
aspectj-8de760d6979b047eb9d3d490302bc0f5967d3aab.zip
243516: fixed example
Diffstat (limited to 'docs/progGuideDB')
-rw-r--r--docs/progGuideDB/language.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/progGuideDB/language.xml b/docs/progGuideDB/language.xml
index ea3c4702a..3bbaba3f8 100644
--- a/docs/progGuideDB/language.xml
+++ b/docs/progGuideDB/language.xml
@@ -1246,7 +1246,7 @@ void around(Point p, int x): target(p)
</para>
<programlisting><![CDATA[
- class TraceNonStaticMethods {
+ aspect TraceNonStaticMethods {
before(Point p): target(p) && call(* *(..)) {
System.out.println("Entering " + thisJoinPoint + " in " + p);
}