Author: mbenson
Date: Thu Jun 16 16:12:40 2011
New Revision: 1136518
URL: http://svn.apache.org/viewvc?rev=1136518&view=rev
Log:
javadoc
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java
URL:
http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java?rev=1136518&r1=1136517&r2=1136518&view=diff
==============================================================================
---
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java
(original)
+++
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java
Thu Jun 16 16:12:40 2011
@@ -6167,7 +6167,7 @@ public class StringUtils {
* @param s the first String, must not be null
* @param t the second String, must not be null
* @param threshold the target threshold, must not be negative
- * @return result distance, or -1 if the distance would be greater than
the threshold
+ * @return result distance, or {@code -1} if the distance would be greater
than the threshold
* @throws IllegalArgumentException if either String input {@code null} or
negative threshold
*/
public static int getLevenshteinDistance(CharSequence s, CharSequence t,
int threshold) {