fix Javadoc
diff --git a/src/main/java/org/apache/sling/commons/clam/internal/ClamdService.java b/src/main/java/org/apache/sling/commons/clam/internal/ClamdService.java
index 3a42143..3db1449 100644
--- a/src/main/java/org/apache/sling/commons/clam/internal/ClamdService.java
+++ b/src/main/java/org/apache/sling/commons/clam/internal/ClamdService.java
@@ -170,8 +170,8 @@
      * It is mandatory to prefix this command with n or z.
      * Scan a stream of data. The stream is sent to clamd in chunks, after INSTREAM, on the same socket on which the
      * command was sent.  This avoids the overhead of establishing new TCP connections and problems with NAT.
-     * The format  of the chunk is: '<length><data>' where <length> is the size of the following data in bytes
-     * expressed as a 4 byte unsigned integer in network byte order and <data> is the actual chunk.
+     * The format  of the chunk is: '&lt;length&gt;&lt;data&gt;' where &lt;length&gt; is the size of the following data in bytes
+     * expressed as a 4 byte unsigned integer in network byte order and &lt;data&gt; is the actual chunk.
      * Streaming is terminated by sending a zero-length chunk.
      * Note: do not exceed StreamMaxLength as defined in clamd.conf, otherwise clamd will reply with INSTREAM size
      * limit exceeded and close the connection.