Fixing @params

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1065230 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-01-30 08:47:38 +00:00
parent 6e6bc18c9f
commit f0df931ba0
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ public class UnicodeUnescaper extends CharSequenceTranslator {
* 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 CharSequenceTranslator {
/**
* 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) {