Skip to content

Commit 2118816

Browse files
committed
Javadoc typos: ascii -> ASCII.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1636489 13f79535-47bb-0310-9956-ffa450edef68
1 parent aed6d32 commit 2118816

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/main/java/org/apache/commons/codec/language/DaitchMokotoffSoundex.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -336,11 +336,11 @@ private static String stripQuotes(String str) {
336336
return str;
337337
}
338338

339-
/** Whether to use ascii folding prior to encoding. */
339+
/** Whether to use ASCII folding prior to encoding. */
340340
private final boolean folding;
341341

342342
/**
343-
* Creates a new instance with ascii-folding enabled.
343+
* Creates a new instance with ASCII-folding enabled.
344344
*/
345345
public DaitchMokotoffSoundex() {
346346
this(true);
@@ -349,11 +349,11 @@ public DaitchMokotoffSoundex() {
349349
/**
350350
* Creates a new instance.
351351
* <p>
352-
* With ascii-folding enabled, certain accented characters will be transformed to equivalent ascii characters, e.g.
352+
* With ASCII-folding enabled, certain accented characters will be transformed to equivalent ASCII characters, e.g.
353353
* è -&gt; e.
354354
*
355355
* @param folding
356-
* if ascii-folding shall be performed before encoding
356+
* if ASCII-folding shall be performed before encoding
357357
*/
358358
public DaitchMokotoffSoundex(final boolean folding) {
359359
this.folding = folding;
@@ -362,7 +362,7 @@ public DaitchMokotoffSoundex(final boolean folding) {
362362
/**
363363
* Performs a cleanup of the input string before the actual soundex transformation.
364364
* <p>
365-
* Removes all whitespace characters and performs ascii folding if enabled.
365+
* Removes all whitespace characters and performs ASCII folding if enabled.
366366
*
367367
* @param input
368368
* the input string to cleanup

0 commit comments

Comments
 (0)