Cannot use {@code} to enclose text that includes {}

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1079421 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-03-08 16:33:15 +00:00
parent efc7ed5eca
commit fe81ef05b0
1 changed files with 4 additions and 4 deletions

View File

@ -5872,7 +5872,7 @@ public class StringUtils {
* CharSequences begin to differ.</p> * CharSequences begin to differ.</p>
* *
* <p>For example, * <p>For example,
* {@code indexOfDifference(new String[] {"i am a machine", "i am a robot"}) -> 7}</p> * <code>indexOfDifference(new String[] {"i am a machine", "i am a robot"}) -> 7</code></p>
* *
* <pre> * <pre>
* StringUtils.indexOfDifference(null) = -1 * StringUtils.indexOfDifference(null) = -1
@ -5962,7 +5962,7 @@ public class StringUtils {
* characters that is common to all of them.</p> * characters that is common to all of them.</p>
* *
* <p>For example, * <p>For example,
* {@code getCommonPrefix(new String[] {"i am a machine", "i am a robot"}) -> "i am a "}</p> * <code>getCommonPrefix(new String[] {"i am a machine", "i am a robot"}) -> "i am a "</code></p>
* *
* <pre> * <pre>
* StringUtils.getCommonPrefix(null) = "" * StringUtils.getCommonPrefix(null) = ""
@ -6314,7 +6314,7 @@ public class StringUtils {
* </p> * </p>
* <p> * <p>
* The function returns the argument string with whitespace normalized by using * The function returns the argument string with whitespace normalized by using
* {@code {@link #trim(String)}} to remove leading and trailing whitespace * <code>{@link #trim(String)}</code> to remove leading and trailing whitespace
* and then replacing sequences of whitespace characters by a single space. * and then replacing sequences of whitespace characters by a single space.
* </p> * </p>
* In XML Whitespace characters are the same as those allowed by the <a * In XML Whitespace characters are the same as those allowed by the <a
@ -6334,7 +6334,7 @@ public class StringUtils {
* </p> * </p>
* <p> * <p>
* The difference is that Java's whitespace includes vertical tab and form feed, which this functional will also * The difference is that Java's whitespace includes vertical tab and form feed, which this functional will also
* normalize. Additonally {@code {@link #trim(String)}} removes control characters (char &lt;= 32) from both * normalize. Additonally <code>{@link #trim(String)}</code> removes control characters (char &lt;= 32) from both
* ends of this String. * ends of this String.
* </p> * </p>
* *