Index: /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/tags/EditorTag.java
===================================================================
--- /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/tags/EditorTag.java	(revision 2030)
+++ /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/tags/EditorTag.java	(revision 2031)
@@ -33,22 +33,21 @@
 
 /**
- * TODO check, if usage sample in comment is correct !!! (Advanced usage) <br><br>
- * 
  * FCKeditor Tag class to access the
- * {@linkplain net.fckeditor.FCKeditor container}.<br>
+ * {@linkplain net.fckeditor.FCKeditor container}.<br />
  * <p>
  * <b>Simple usage</b>:
  * 
  * <pre>
- * &lt;FCK:editor
- * 	instanceName=&quot;EditorAccessibility&quot;
- * 	width=&quot;80%&quot;
- * 	height=&quot;120&quot;
- * 	toolbarSet=&quot;Accessibility&quot;
- * &quot;&gt;This is another test. &lt;BR&gt;&lt;BR&gt;The &quot;Second&quot; row.&lt;/BR&gt;&lt;/FCK:editor&quot;&gt;
+ * &lt;FCK:editor instanceName=&quot;EditorAccessibility&quot; width=&quot;80%&quot;
+ *    height=&quot;120&quot; toolbarSet=&quot;Accessibility&quot;&gt;
+ *    &lt;jsp:attribute name=&quot;value&quot;&gt;
+ *      This is another test.&lt;br/&gt;The &quot;second&quot; row.
+ *    &lt;/jsp:attribute&gt;
+ * &lt;/FCK:editor&gt;
  * </pre>
  * 
- * <p>
- * In this example we set all the attribute for the fckedit tag.
+ * </p>
+ * 
+ * In this example we set all the attribute for the FCKeditor tag.
  * 
  * <p>
@@ -56,15 +55,20 @@
  * 
  * <pre>
- * &lt;FCK:editor instanceName=&quot;EditorDefault&quot; basePath=&quot;/fckeditor/&quot;
- * 	styleNames=&quot;;Style 1;Style 2; Style 3&quot; 
- * 	fontNames=&quot;;Arial;Courier New;Times New Roman;Verdana&quot; &gt;
- * 	This is some &lt;B&gt;sample text&lt;/B&gt;.
+ * &lt;FCK:editor instanceName=&quot;EditorDefault&quot; basePath=&quot;/fckeditor/&quot;&gt;
+ *   &lt;jsp:attribute name=&quot;value&quot;&gt;
+ *     This is another test.&lt;br/&gt;The &quot;second&quot; row.
+ *   &lt;/jsp:attribute&gt;
+ *   &lt;jsp:body&gt;
+ *     &lt;FCK:config IndentUnit=&quot;cm&quot; FontNames=&quot;Arial;Courier New;Times New Roman;Verdana&quot; /&gt;
+ *   &lt;/jsp:body&gt;
  * &lt;/FCK:editor&gt;
  * </pre>
  * 
- * In this example we set the id and the basePath of the editor (since it is
- * /fckeditor/ we could have omitted it because it's already the default value).<br>
+ * In this example we set the instanceName and the basePath of the editor (since
+ * it is /fckeditor/ we could have omitted it because it's already the default
+ * value).<br />
  * Then we used the the optional attributes to set some advanced configuration
  * settings.
+ * </p>
  * 
  * @version $Id$
