diff --git a/support/src/main/java/org/springframework/ws/transport/jms/JmsMessageSender.java b/support/src/main/java/org/springframework/ws/transport/jms/JmsMessageSender.java
index e6011000..a8f22539 100644
--- a/support/src/main/java/org/springframework/ws/transport/jms/JmsMessageSender.java
+++ b/support/src/main/java/org/springframework/ws/transport/jms/JmsMessageSender.java
@@ -1,11 +1,11 @@
/*
- * Copyright 2007 the original author or authors.
+ * Copyright 2005-2012 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
- * http://www.apache.org/licenses/LICENSE-2.0
+ * http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
@@ -49,21 +49,41 @@ import org.springframework.ws.transport.jms.support.JmsTransportUtils;
* themselves. The destination represents the name of the {@link Queue} or {@link Topic} that will be resolved by
* the {@link #getDestinationResolver() destination resolver}. Valid param-name include:
*
- * | param-name | Description |
- * | deliveryMode | Indicates whether the request message is persistent or not. This may be
- * PERSISTENT or NON_PERSISTENT. See {@link MessageProducer#setDeliveryMode(int)} |
- * | messageType | The message type. This may be BINARY_MESSAGE (the default) or
- * TEXT_MESSAGE |
| priority | The JMS priority (0-9) associated with the request
- * message. See {@link MessageProducer#setPriority(int)} |
| replyToName | The name of the
- * destination to which the response message must be sent, that will be resolved by the {@link #getDestinationResolver()
- * destination resolver}. |
| timeToLive | The lifetime, in milliseconds, of the request
- * message. See {@link MessageProducer#setTimeToLive(long)} |
+ *
+ *
+ * | param-name | Description |
+ *
+ * | deliveryMode |
+ * Indicates whether the request message is persistent or not. This may be PERSISTENT or
+ * NON_PERSISTENT. See {@link MessageProducer#setDeliveryMode(int)} |
+ *
+ *
+ * | messageType |
+ * The message type. This may be BINARY_MESSAGE (the default) or TEXT_MESSAGE |
+ *
+ *
+ * | priority |
+ * The JMS priority (0-9) associated with the request message. See
+ * {@link MessageProducer#setPriority(int)} |
+ *
+ *
+ * | replyToName |
+ * The name of the destination to which the response message must be sent, that will be resolved by
+ * the {@link #getDestinationResolver() destination resolver}. |
+ *
+ *
+ * | timeToLive |
+ * The lifetime, in milliseconds, of the request message. See
+ * {@link MessageProducer#setTimeToLive(long)} |
+ *
+ *
+ *
*
* If the replyToName is not set, a {@link Session#createTemporaryQueue() temporary queue} is used.
*
* This class uses {@link BytesMessage} messages by default, but can be configured to send {@link TextMessage} messages
- * instead. Note that BytesMessages are prefered, since TextMessages do not support
- * attachments and charactering encodings reliably.
+ * instead. Note that BytesMessages are preferred, since TextMessages do not support
+ * attachments and character encodings reliably.
*
* Some examples of JMS URIs are:
*