diff --git a/examples/example1_complete_report/createDocs.sh b/examples/example1_complete_report/createDocs.sh
index 44cd0f8..49a1b07 100755
--- a/examples/example1_complete_report/createDocs.sh
+++ b/examples/example1_complete_report/createDocs.sh
@@ -6,7 +6,6 @@ javadoc -docletpath ../../target/TeXDoclet.jar \
-doclet org.stfm.texdoclet.TeXDoclet \
-tree \
-hyperref \
- -texinit texdoclet_include/preamble.tex \
-imagespath ".." \
-output texdoclet_output/TeXDoclet.tex \
-title "TeXDoclet Java Documentation" \
diff --git a/src/main/java/org/stfm/texdoclet/HTMLtoLaTeXBackEnd.java b/src/main/java/org/stfm/texdoclet/HTMLtoLaTeXBackEnd.java
index f0969cd..128c655 100755
--- a/src/main/java/org/stfm/texdoclet/HTMLtoLaTeXBackEnd.java
+++ b/src/main/java/org/stfm/texdoclet/HTMLtoLaTeXBackEnd.java
@@ -69,12 +69,12 @@ public class HTMLtoLaTeXBackEnd extends HTMLEditorKit.ParserCallback {
/**
* Constructs a new instance.
*
- * @param StringBuffer
+ * @param stringBuffer
* The StringBuffer where the translated HTML is
* appended.
*/
- public HTMLtoLaTeXBackEnd(StringBuffer ret) {
- this.ret = ret;
+ public HTMLtoLaTeXBackEnd(StringBuffer stringBuffer) {
+ this.ret = stringBuffer;
}
/**
@@ -663,7 +663,7 @@ public class HTMLtoLaTeXBackEnd extends HTMLEditorKit.ParserCallback {
* Converts a HTML string into LaTeX using an
* instance of HTMLtoLaTeXBackEnd.
*
- * @returns The converted string.
+ * @return The converted string.
*/
public static String fixText(String str) {
// System.out.println("fixText: " + str);
diff --git a/src/main/java/org/stfm/texdoclet/TableInfo.java b/src/main/java/org/stfm/texdoclet/TableInfo.java
index 5020472..877074e 100755
--- a/src/main/java/org/stfm/texdoclet/TableInfo.java
+++ b/src/main/java/org/stfm/texdoclet/TableInfo.java
@@ -104,15 +104,11 @@ public class TableInfo {
* Constructs a new table object and starts processing of the table by
* scanning the <table> passed to count columns.
*
- * @param p
- * properties found on the <table> tag
- * @param ret
- * the result buffer that will contain the output
- * @param table
- * the input string that has the entire table definition in it.
- * @param off
- * the offset into <table> where scanning
- * should start
+ * //@param p // properties found on the <table> tag
+ * //@param ret // the result buffer that will contain the output //@param
+ * table // the input string that has the entire table definition in it.
+ * //@param off // the offset into <table> where scanning
+ * // should start
*/
public StringBuffer startTable(StringBuffer org, MutableAttributeSet attrSet) {
originalBuffer = org;
@@ -165,9 +161,6 @@ public class TableInfo {
/**
* Ends the table, closing the last row as needed
*
- * @param ret
- * The output buffer to put LaTeX2e
- * into.
*/
public StringBuffer endTable() {
originalBuffer.append("\n% Table #" + tblno + "\n\\begin{center}\n");
@@ -217,11 +210,8 @@ public class TableInfo {
/**
* Starts a new column, possibly closing the current column if needed
*
- * @param ret
- * The output buffer to put LaTeX2e
- * into.
- * @param p
- * the properties from the <td> tag
+ * //@param ret The output buffer to put LaTeX2e
+ * into. //@param p the properties from the <td> tag
*/
public void startCol(MutableAttributeSet attrSet) {
int span = hasNumAttr(HTML.Attribute.COLSPAN, attrSet);
@@ -271,11 +261,8 @@ public class TableInfo {
* Starts a new Heading column, possibly closing the current column if
* needed. A Heading column has a Bold Face font directive around it.
*
- * @param ret
- * The output buffer to put LaTeX2e
- * into.
- * @param p
- * The properties from the <th> tag
+ * //@param ret The output buffer to put LaTeX2e
+ * into. //@param p The properties from the <th> tag
*/
public void startHeadCol(MutableAttributeSet attrSet) {
startCol(attrSet);
@@ -285,9 +272,8 @@ public class TableInfo {
/**
* Ends the current column.
*
- * @param ret
- * The output buffer to put LaTeX2e
- * into.
+ * //@param ret The output buffer to put LaTeX2e
+ * into.
*/
public void endCol() {
if (parboxed) {
@@ -300,10 +286,8 @@ public class TableInfo {
/**
* Starts a new row, possibly closing the current row if needed
*
- * @param ret
- * The output buffer to put LaTeX into.
- * @param p
- * The properties from the <tr> tag
+ * //@param ret The output buffer to put LaTeX
+ * into. //@param p The properties from the <tr> tag
*/
public void startRow(MutableAttributeSet attrSet) {
if (rowcnt == 0) {
@@ -318,9 +302,8 @@ public class TableInfo {
/**
* Ends the current row.
*
- * @param ret
- * The output buffer to put LaTeX2e
- * into.
+ * // @param ret The output buffer to put LaTeX2e
+ * into.
*/
public void endRow() {
ret.append(" \\\\");