| -{@code pAmount} |
diff --git a/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java b/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java
index 3a6b1bf0..09d66e55 100755
--- a/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java
+++ b/common/common-lang/src/main/java/com/twelvemonkeys/lang/StringUtil.java
@@ -1765,12 +1765,11 @@ public final class StringUtil {
* expression.
*
* An invocation of this method of the form
- * matches(str, regex) yields exactly the
+ * {@code matches(str, regex)} yields exactly the
* same result as the expression
*
- * {@link Pattern}.
- * {@link Pattern#matches(String, CharSequence) matches}
- * (regex, str)
+ * {@link Pattern}.
+ * {@link Pattern#matches(String, CharSequence) matches(regex, str)}
*
* @param pString the string
* @param pRegex the regular expression to which this string is to be matched
@@ -1789,16 +1788,14 @@ public final class StringUtil {
* regular expression with the given pReplacement.
*
* An invocation of this method of the form
- *
- * replaceFirst(str, regex, repl)
- *
+ * {@code replaceFirst(str, regex, repl)}
* yields exactly the same result as the expression:
*
- *
- * {@link Pattern}.{@link Pattern#compile(String) compile}(regex).
- * {@link Pattern#matcher matcher}(str).
- * {@link java.util.regex.Matcher#replaceFirst replaceFirst}(repl)
- *
+ *
+ * {@link Pattern#compile(String) Pattern.compile(regex)}
+ * {@link Pattern#matcher .matcher(str)}
+ * {@link java.util.regex.Matcher#replaceFirst .replaceFirst(repl)}
+ *
*
* @param pString the string
* @param pRegex the regular expression to which this string is to be matched
@@ -1817,14 +1814,14 @@ public final class StringUtil {
* regular expression with the given pReplacement.
*
* An invocation of this method of the form
- * replaceAll(str, pRegex, repl)
+ * {@code replaceAll(str, pRegex, repl)}
* yields exactly the same result as the expression
*
- *
- * {@link Pattern}.{@link Pattern#compile(String) compile}(pRegex).
- * {@link Pattern#matcher matcher}(str{@code ).
- * {@link java.util.regex.Matcher#replaceAll replaceAll}(}repl{@code )}
- *
+ *
+ * {@link Pattern#compile(String) Pattern.compile(pRegex)}
+ * {@link Pattern#matcher .matcher(str)}
+ * {@link java.util.regex.Matcher#replaceAll .replaceAll(repl)}
+ *
*
* @param pString the string
* @param pRegex the regular expression to which this string is to be matched
@@ -1862,12 +1859,12 @@ public final class StringUtil {
*
*
* An invocation of this method of the form
- * split(str, regex, n)
+ * {@code split(str, regex, n)}
* yields the same result as the expression:
*
* {@link Pattern}.
- * {@link Pattern#compile(String) compile}(regex).
- * {@link Pattern#split(CharSequence,int) split}(str, n)
+ * {@link Pattern#compile(String) compile(regex)}.
+ * {@link Pattern#split(CharSequence,int) split(str, n)}
*
*
* @param pString the string