diff options
Diffstat (limited to 'docs/progGuideDB')
-rw-r--r-- | docs/progGuideDB/language.xml | 2 |
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); } |