diff options
Diffstat (limited to 'docs/developer/language.html')
-rw-r--r-- | docs/developer/language.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/developer/language.html b/docs/developer/language.html index 824b8195b..1ddac2678 100644 --- a/docs/developer/language.html +++ b/docs/developer/language.html @@ -171,7 +171,7 @@ support composition and abstraction. The fact that someone can write:</p> pointcut stateChange(): call(void FigureElement+.set*(*));<br> <br> /* compose pointcuts to get other pointcuts */<br> - pointcut topLevelStateChange(): stateChange() <br> + pointcut topLevelStateChange(): stateChange() `<br> && !cflowbelow(stateChange());</font></p> </blockquote> <p>is what makes it possible for people to really work with crosscutting |