From 0cdf992433627fe03c326410d38c904de75e68ec Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Fri, 9 Aug 2019 13:14:46 +0200 Subject: [PATCH] Fix grammar in Integration chapter regarding MDPs --- src/docs/asciidoc/integration.adoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/docs/asciidoc/integration.adoc b/src/docs/asciidoc/integration.adoc index 56ce678109..6fbe67b051 100644 --- a/src/docs/asciidoc/integration.adoc +++ b/src/docs/asciidoc/integration.adoc @@ -2102,11 +2102,11 @@ Consider the following interface definition: } ---- -Notice that, although the interface extends -neither the `MessageListener` nor the `SessionAwareMessageListener` interface, you can still use it -as a MDP by using the `MessageListenerAdapter` class. Notice also how the -various message handling methods are strongly typed according to the contents of the -various `Message` types that they can receive and handle. +Notice that, although the interface extends neither the `MessageListener` nor the +`SessionAwareMessageListener` interface, you can still use it as an MDP by using the +`MessageListenerAdapter` class. Notice also how the various message handling methods are +strongly typed according to the contents of the various `Message` types that they can +receive and handle. Now consider the following implementation of the `MessageDelegate` interface: