[LANG-656] Fix Javadoc.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1032596 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2010-11-08 15:18:19 +00:00
parent 80a39fba9b
commit c5710ced50
1 changed files with 1 additions and 1 deletions

View File

@ -1611,7 +1611,7 @@ public static int indexOfAnyBut(CharSequence cs, char[] searchChars) {
* StringUtils.indexOfAnyBut(*, null) = -1
* StringUtils.indexOfAnyBut(*, "") = -1
* StringUtils.indexOfAnyBut("zzabyycdxx", "za") = 3
* StringUtils.indexOfAnyBut("zzabyycdxx", "") = 0
* StringUtils.indexOfAnyBut("zzabyycdxx", "") = -1
* StringUtils.indexOfAnyBut("aba","ab") = -1
* </pre>
*