diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-01-31 13:40:34 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-02-01 08:58:27 +0700 |
commit | 06557e86b01bf0c2a58a58e6d322f8c576b0acba (patch) | |
tree | c574b06f59d55cf3ba7f13528916ef9382fc9ba6 /docs/modules/faq/pages/faq.adoc | |
parent | c6de70659e3b52e6f6df5e309902a2fa5c8981ce (diff) | |
download | aspectj-06557e86b01bf0c2a58a58e6d322f8c576b0acba.tar.gz aspectj-06557e86b01bf0c2a58a58e6d322f8c576b0acba.zip |
Fix several structural asciidoc warnings
In changes.adoc, also make headlines and TOC more readable.
To avoid some "image not found" warnings, move images directory in ROOT
module to the canonical level. This also required a small change in
IDE.md.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'docs/modules/faq/pages/faq.adoc')
-rw-r--r-- | docs/modules/faq/pages/faq.adoc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/modules/faq/pages/faq.adoc b/docs/modules/faq/pages/faq.adoc index a5a76e804..962af0b7c 100644 --- a/docs/modules/faq/pages/faq.adoc +++ b/docs/modules/faq/pages/faq.adoc @@ -2267,7 +2267,7 @@ bug. See #q:bugreports[Q:How do I submit a bug report?]. specifying the defining signature. Since all overriding methods share this signature, the advice runs for each method executed. (This happens, e.g., when one method invokes the same method in the superclass using -`super.{method}(..)`). This is the correct behavior. +`super.\{method}(..)`). This is the correct behavior. To avoid this, use the `call(..)` pointcut designator, or use `!cflow(..)` to pick out only the initial method-execution. @@ -2467,7 +2467,7 @@ Aspect instances will be garbage collected just like regular objects after there are no more strong references to them. For the default aspect instantiation model, `issingleton`, the aspect class retains a reference to the singleton instance, in order to implement -`static {AspectClass} aspectOf()`, so singleton instances will not be +`static \{AspectClass} aspectOf()`, so singleton instances will not be garbage collected until the class is. For long-running or memory-critical programs, consider using weak references in singleton aspects for state that should be garbage collected. @@ -2586,8 +2586,8 @@ JBuilder, and NetBeans through a common API, AJDE. *Q:* What are the new features of AspectJ 5? *A:* All the new features are documented in the -xref:../adk15notebook/adk15notebook.adoc[AspectJ 5 Developer's Notebook] and the -link:devguide/index.html[AspectJ Development Environment Guide]. To +xref:adk15notebook:index.adoc[AspectJ 5 Developer's Notebook] and the +xref:devguide:index.adoc[AspectJ Development Environment Guide]. To summarize: * Java 5 support: as an extension to Java, AspectJ supports all the new |