| | names = {"-ub", "--unamb-began"}, |
| | description = |
| | - "Contractions to treat as unambiguous (e.g., cause,bout)", |
| | - paramLabel = "words" |
| | + "Contraction to treat as unambiguous (e.g., cause, bout)", |
| | + paramLabel = "word" |
| | ) |
| | private String[] mBeganUnambiguous; |
| | |
| | /** |
| | * List of unambiguous contractions having lagging apostrophes. |
| | */ |
| | @CommandLine.Option( |
| | names = {"-ue", "--unamb-ended"}, |
| | description = |
| | - "Contractions to treat as unambiguous (e.g., frien,thinkin)", |
| | - paramLabel = "words" |
| | + "Contraction to treat as unambiguous (e.g., frien, thinkin)", |
| | + paramLabel = "word" |
| | ) |
| | private String[] mEndedUnambiguous; |
| | |
| | /** |
| | * List of ambiguous contractions having leading apostrophes. |
| | */ |
| | @CommandLine.Option( |
| | names = {"-ab", "--amb-began"}, |
| | description = |
| | - "Contractions to treat as ambiguous (e.g., sup,kay)", |
| | - paramLabel = "words" |
| | + "Contraction to treat as ambiguous (e.g., sup, kay)", |
| | + paramLabel = "word" |
| | ) |
| | private String[] mBeganAmbiguous; |
| | |
| | /** |
| | * List of ambiguous contractions having lagging apostrophes. |
| | */ |
| | @CommandLine.Option( |
| | names = {"-ae", "--amb-ended"}, |
| | description = |
| | - "Contractions to treat as ambiguous (e.g., gi,o)", |
| | - paramLabel = "words" |
| | + "Contraction to treat as ambiguous (e.g., gi, o)", |
| | + paramLabel = "word" |
| | ) |
| | private String[] mEndedAmbiguous; |