More doc fixes

Fix Java syntax rendering leak.
This commit is contained in:
Gary Russell
2018-07-19 17:00:07 -04:00
parent 70db967d4f
commit 09d6b76748

View File

@@ -848,7 +848,7 @@ When you use the Java DSL, you can add the interceptor to the endpoint's advice
public IntegrationFlow flow() {
...
.handle("someBean", "someMethod",
e -> e.advice(idempotentReceiverInterceptor())
e -> e.advice(idempotentReceiverInterceptor()))
...
}
----