Use double dot in META-INF/aop.xml documentation

Closes gh-32264
This commit is contained in:
Sébastien Deleuze 2024-02-14 10:42:15 +01:00
parent b4bec4ca61
commit 6e9607ce99
1 changed files with 4 additions and 4 deletions

View File

@ -521,8 +521,8 @@ standard AspectJ. The following example shows the `aop.xml` file:
<aspectj>
<weaver>
<!-- only weave classes in our application-specific packages -->
<include within="com.xyz.*"/>
<!-- only weave classes in our application-specific packages and sub-packages -->
<include within="com.xyz..*"/>
</weaver>
<aspects>
@ -731,8 +731,8 @@ For example:
<aspectj>
<weaver>
<!-- only weave classes in our application-specific packages -->
<include within="com.xyz.*"/>
<!-- only weave classes in our application-specific packages and sub-packages -->
<include within="com.xyz..*"/>
</weaver>
</aspectj>