Fix typo in core-aop.adoc

Closes gh-24602
This commit is contained in:
Andreas Volkmann
2020-02-26 17:50:11 +01:00
committed by Rossen Stoyanchev
parent d4de3396f7
commit b30f9a1308

View File

@@ -1273,7 +1273,7 @@ The following example shows how to use around advice:
// start stopwatch
val retVal = pjp.proceed()
// stop stopwatch
return pjp.proceed()
return retVal
}
}