Index: /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/FCKeditor.java
===================================================================
--- /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/FCKeditor.java	(revision 3421)
+++ /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/FCKeditor.java	(revision 3422)
@@ -55,23 +55,24 @@
 	 * parameters. If you omit basic parameters, default ones will be taken from
 	 * the properties file. <br />
-	 * <strong>Note:</strong> It's your responsibility to supply reasonable and valid values, only
-	 * <code>request</code> and <code>instanceName</code> will be checked.
+	 * <strong>Note:</strong> It's your responsibility to supply reasonable and
+	 * valid values, only <code>request</code> and <code>instanceName</code>
+	 * will be checked.
 	 * 
 	 * @param request
 	 *            current user request instance
 	 * @param instanceName
-	 *            unique name of this editor
+	 *            the unique name of this editor
 	 * @param width
-	 *            desired editor width (CSS-style value)
+	 *            the desired editor width (CSS-style value)
 	 * @param height
-	 *            desired editor height (CSS-style value)
+	 *            the desired editor height (CSS-style value)
 	 * @param toolbarSet
-	 *            desired toolbar set name. Supplying a non-existent set will
-	 *            make the editor fail.
+	 *            the desired toolbar set name. Supplying a non-existent set
+	 *            will make the editor fail.
 	 * @param value
-	 *            HTML markup of the editor document. Markup will be properly
-	 *            escaped.
+	 *            the HTML markup of the editor document. Markup will be
+	 *            properly escaped.
 	 * @param basePath
-	 *            base path of the editor. Absolute to the context.
+	 *            the base path of the editor, absolute to the context
 	 * @throws IllegalArgumentException
 	 *             if instanceName is not a valid HTML id
@@ -98,9 +99,8 @@
 	 *            current user request instance
 	 * @param instanceName
-	 *            unique name of this editor
+	 *            the unique name of this editor
 	 * @throws IllegalArgumentException
 	 *             if instanceName is not a valid HTML id
 	 */
-
 	public FCKeditor(final HttpServletRequest request, final String instanceName) {
 		
@@ -121,5 +121,5 @@
 	 * 
 	 * @param instanceName
-	 *            unique name of this editor
+	 *            the unique name of this editor
 	 * @throws IllegalArgumentException
 	 *             if instanceName is not a valid HTML id
@@ -136,6 +136,6 @@
 	 * 
 	 * @param value
-	 *            HTML markup of the editor document. Markup will be properly
-	 *            escaped.
+	 *            the HTML markup of the editor document. Markup will be
+	 *            properly escaped.
 	 */
 	public void setValue(final String value) {
@@ -148,5 +148,5 @@
 	 * 
 	 * @param basePath
-	 *            base path of the editor. Absolute to the context.
+	 *            the base path of the editor, absolute to the context
 	 */
 	public void setBasePath(final String basePath) {
@@ -158,6 +158,6 @@
 	 * 
 	 * @param toolbarSet
-	 *            desired toolbar set name. Supplying a non-existent set will
-	 *            make the editor fail.
+	 *            the desired toolbar set name. Supplying a non-existent set
+	 *            will make the editor fail.
 	 */
 	public void setToolbarSet(final String toolbarSet) {
@@ -170,5 +170,5 @@
 	 * 
 	 * @param width
-	 *            desired editor width (CSS-style value)
+	 *            the desired editor width (CSS-style value)
 	 */
 	public void setWidth(final String width) {
@@ -181,5 +181,5 @@
 	 * 
 	 * @param height
-	 *            desired editor height (CSS-style value)
+	 *            the desired editor height (CSS-style value)
 	 */
 	public void setHeight(final String height) {
@@ -205,10 +205,10 @@
 
 	/**
-	 * Gets advanced configuration option.<br />
-	 * See {@link FCKeditorConfig} for more details.
+	 * Gets an configuration option. See {@link FCKeditorConfig} for more
+	 * details.
 	 * 
 	 * @param name
-	 *            name of the parameter (case-sensitive)
-	 * @return value represented by this parameter, else null
+	 *            the name of the parameter (case-sensitive)
+	 * @return the value represented by this parameter, else null
 	 */
 	public String getConfig(String name) {
@@ -217,11 +217,11 @@
 
 	/**
-	 * Sets a configuration option.<br />
-	 * See {@link FCKeditorConfig} for more details.
+	 * Sets a configuration option. See {@link FCKeditorConfig} for more
+	 * details.
 	 * 
 	 * @param name
-	 *            name of the parameter (case-sensitive)
+	 *            the name of the parameter (case-sensitive)
 	 * @param value
-	 *            value of this parameter. Null values will be ignored.
+	 *            the value of this parameter. Null values will be ignored.
 	 */
 	public void setConfig(String name, String value) {
@@ -354,10 +354,10 @@
 	 * 
 	 * @param name
-	 *            name attribute of the input tag.
+	 *            name attribute of the input tag
 	 * @param id
-	 *            id attribute of the input tag.
+	 *            id attribute of the input tag
 	 * @param value
-	 *            value attribute of the input tag.
-	 * @return The produced XHTML tag.
+	 *            value attribute of the input tag
+	 * @return the produced XHTML tag
 	 */
 	private String createInputForVariable(final String name, final String id,
Index: /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/FCKeditorConfig.java
===================================================================
--- /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/FCKeditorConfig.java	(revision 3421)
+++ /FCKeditor.Java/trunk/java-core/src/main/java/net/fckeditor/FCKeditorConfig.java	(revision 3422)
@@ -33,8 +33,8 @@
 
 /**
- * Java representation of the FCKConfig object from the editor.
- * Every FCKeditor instance will load the <code>config.js</code> by default, if
- * you assign a FCKConfig instance to an editor, it will automatically override
- * those system-wide settings for the current instance only.
+ * Java representation of the FCKConfig object from the editor. Every FCKeditor
+ * instance will load the <code>config.js</code> by default, if you assign a
+ * FCKConfig instance to an editor, it will automatically override these
+ * system-wide settings for the current instance only.
  * 
  * @version $Id$
