Author: bayard
Date: Sun Jan 30 08:47:38 2011
New Revision: 1065230
URL: http://svn.apache.org/viewvc?rev=1065230&view=rev
Log:
Fixing @params
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/UnicodeUnescaper.java
Modified:
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/UnicodeUnescaper.java
URL:
http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/UnicodeUnescaper.java?rev=1065230&r1=1065229&r2=1065230&view=diff
==============================================================================
---
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/UnicodeUnescaper.java
(original)
+++
commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/UnicodeUnescaper.java
Sun Jan 30 08:47:38 2011
@@ -45,7 +45,7 @@ public class UnicodeUnescaper extends Ch
* For example, to handle "\\u+0047":
* new UnicodeUnescaper(UnicodeUnescaper.OPTION.escapePlus)
*
- * @param OPTION... options to apply to this unescaper
+ * @param options to apply to this unescaper
*/
public UnicodeUnescaper(OPTION... options) {
if(options.length > 0) {
@@ -58,7 +58,7 @@ public class UnicodeUnescaper extends Ch
/**
* Whether the passed in option is currently set.
*
- * @param OPTION option to check state of
+ * @param option to check state of
* @return whether the option is set
*/
public boolean isSet(OPTION option) {