diff --git a/spring-integration-reference/src/configuration.xml b/spring-integration-reference/src/configuration.xml
index c102e6dad4..af85a5b26d 100644
--- a/spring-integration-reference/src/configuration.xml
+++ b/spring-integration-reference/src/configuration.xml
@@ -104,8 +104,6 @@
By using this element, you can also specify the channel's capacity:
<queue-channel id="exampleChannel" capacity="100"/>
-
-
To create a PriorityChannel, use the "priority-channel" element:
]]>
@@ -246,12 +244,11 @@
The kind of channel that gets created automatically by the bus can be customized by using the "channel-factory"
element on the "message-bus" definition as in the following sample:
-
-
+
+
-
- ]]>
+]]>
With this definition, all the channels created automatically will be PriorityChannel instances.
Without the "channel-factory element, the Message Bus will assume a default QueueChannelFactory.