diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-07-17 11:42:41 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2024-01-06 10:09:11 +0100 |
commit | 6450c7d744c2be34767105626b70df518ac38631 (patch) | |
tree | f61b05ec080d7bfa69db3dd88480b10772723b0b /docs/adk15ProgGuideDB/covariance.adoc | |
parent | d851d3f377a8c4b0c5f8056f9dee22f29dc349c8 (diff) | |
download | aspectj-6450c7d744c2be34767105626b70df518ac38631.tar.gz aspectj-6450c7d744c2be34767105626b70df518ac38631.zip |
Finish AsciiDoc improvements in ADK Developer's Notebook (WIP)
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'docs/adk15ProgGuideDB/covariance.adoc')
-rw-r--r-- | docs/adk15ProgGuideDB/covariance.adoc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/adk15ProgGuideDB/covariance.adoc b/docs/adk15ProgGuideDB/covariance.adoc index 793b134f2..2349bf52c 100644 --- a/docs/adk15ProgGuideDB/covariance.adoc +++ b/docs/adk15ProgGuideDB/covariance.adoc @@ -64,13 +64,13 @@ Following the join point matching rules given in xref:joinpointsignatures.adoc#j `call(A B.whoAreYou())`:: Does not match anything - neither of the call join points has a signature matched by this pattern. A lint warning is given for the - call `a.whoAreYou()` ("does not match because declaring type is A, if - match required use target(B)"). + call `a.whoAreYou()` ("does not match because declaring type is `A`, if + match required use ``target(B)``"). `call(A+ B.whoAreYou())`:: Matches the call to `b.whoAreYou()` since the signature pattern matches the signature `B B.whoAreYou()`. A lint warning is given for - the call `a.whoAreYou()` ("does not match because declaring type is A, - if match required use target(B)"). + the call `a.whoAreYou()` ("does not match because declaring type is `A`, + if match required use ``target(B)``"). `call(B A.whoAreYou())`:: Does not match anything since neither join point has a signature matched by this pattern. |