diff --git a/src/asciidoc/index.adoc b/src/asciidoc/index.adoc index acaf2721a90a..ccffcc43ace2 100644 --- a/src/asciidoc/index.adoc +++ b/src/asciidoc/index.adoc @@ -13005,7 +13005,7 @@ public class SystemArchitecture { * "service" package, and that implementation types are in sub-packages. * * If you group service interfaces by functional area (for example, - * in packages com.xyz.someapp.abc.service and com.xyz.def.service) then + * in packages com.xyz.someapp.abc.service and com.xyz.someapp.def.service) then * the pointcut expression "execution(* com.xyz.someapp..service.*.*(..))" * could be used instead. * @@ -13013,7 +13013,7 @@ public class SystemArchitecture { * PCD, like so "bean(*Service)". (This assumes that you have * named your Spring service beans in a consistent fashion.) */ - @Pointcut("execution(* com.xyz.someapp.service.*.*(..))") + @Pointcut("execution(* com.xyz.someapp..service.*.*(..))") public void businessService() {} /**