summaryrefslogtreecommitdiffstats
path: root/linguistics/src/main/java/com/yahoo/language/process/Normalizer.java
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2020-06-12 12:51:22 +0200
committerJon Bratseth <bratseth@gmail.com>2020-06-12 12:51:22 +0200
commit7f7b6777514bf05916e2edcbc3e27b1bfd28906c (patch)
treec530cbc56b80eb5128d2d9254b92c0486923f0d4 /linguistics/src/main/java/com/yahoo/language/process/Normalizer.java
parent9fc05281d6a79c26efe04edeb7604300f0c05845 (diff)
SpareCapacityMaintainer sketch
Diffstat (limited to 'linguistics/src/main/java/com/yahoo/language/process/Normalizer.java')
-rw-r--r--linguistics/src/main/java/com/yahoo/language/process/Normalizer.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/linguistics/src/main/java/com/yahoo/language/process/Normalizer.java b/linguistics/src/main/java/com/yahoo/language/process/Normalizer.java
index 0e34f88f4ca..044d249f077 100644
--- a/linguistics/src/main/java/com/yahoo/language/process/Normalizer.java
+++ b/linguistics/src/main/java/com/yahoo/language/process/Normalizer.java
@@ -9,11 +9,11 @@ package com.yahoo.language.process;
public interface Normalizer {
/**
- * <p>NFKC normalizes a String.</p>
+ * NFKC normalizes a String.
*
- * @param input String to normalize.
- * @return The normalized String.
- * @throws ProcessingException If underlying library throws an Exception.
+ * @param input the string to normalize
+ * @return the normalized string
+ * @throws ProcessingException if underlying library throws an Exception
*/
String normalize(String input);