diff --git a/smack-extensions/src/main/java/org/jivesoftware/smackx/pubsub/Item.java b/smack-extensions/src/main/java/org/jivesoftware/smackx/pubsub/Item.java
index 4e72b7a01..56a41cdc7 100644
--- a/smack-extensions/src/main/java/org/jivesoftware/smackx/pubsub/Item.java
+++ b/smack-extensions/src/main/java/org/jivesoftware/smackx/pubsub/Item.java
@@ -24,21 +24,27 @@ import org.jivesoftware.smackx.pubsub.provider.ItemProvider;
* pubsub node. An Item has several properties that are dependent
* on the configuration of the node to which it has been or will be published.
*
- *
An Item received from a node (via {@link LeafNode#getItems()} or {@link LeafNode#addItemEventListener(org.jivesoftware.smackx.pubsub.listener.ItemEventListener)}
+ * An Item received from a node (via {@link LeafNode#getItems()} or {@link LeafNode#addItemEventListener(org.jivesoftware.smackx.pubsub.listener.ItemEventListener)}
+ *
* - Will always have an id (either user or server generated) unless node configuration has both
* {@link ConfigureForm#isPersistItems()} and {@link ConfigureForm#isDeliverPayloads()}set to false.
*
- Will have a payload if the node configuration has {@link ConfigureForm#isDeliverPayloads()} set
* to true, otherwise it will be null.
+ *
*
- * An Item created to send to a node (via {@link LeafNode#send()} or {@link LeafNode#publish()}
+ * An Item created to send to a node (via {@link LeafNode#send()} or {@link LeafNode#publish()}
+ *
* - The id is optional, since the server will generate one if necessary, but should be used if it is
* meaningful in the context of the node. This value must be unique within the node that it is sent to, since
* resending an item with the same id will overwrite the one that already exists if the items are persisted.
*
- Will require payload if the node configuration has {@link ConfigureForm#isDeliverPayloads()} set
- * to true.
+ * to true.
+ *
*
- *
To customise the payload object being returned from the {@link PayloadItem#getPayload()} method, you can
+ *
+ * To customise the payload object being returned from the {@link PayloadItem#getPayload()} method, you can
* add a custom parser as explained in {@link ItemProvider}.
+ *
*
* @author Robin Collier
*/