summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/inflexion/nouns/InflectionAffixes.java
diff options
context:
space:
mode:
authorBenjamin J. Culkin <bjculkin@mix.wvu.edu>2017-10-11 21:34:29 -0300
committerBenjamin J. Culkin <bjculkin@mix.wvu.edu>2017-10-11 21:34:29 -0300
commit235208946ceb2bf0f422956a3ebc0ebb88ba28b6 (patch)
treee50faa94428972c6c23a605ffb4ec88d28f73cba /src/main/java/bjc/inflexion/nouns/InflectionAffixes.java
parent46cb1f6c030991d314d0ef1fafa53e53ef3e03c9 (diff)
Cleanup
Diffstat (limited to 'src/main/java/bjc/inflexion/nouns/InflectionAffixes.java')
-rw-r--r--src/main/java/bjc/inflexion/nouns/InflectionAffixes.java11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/main/java/bjc/inflexion/nouns/InflectionAffixes.java b/src/main/java/bjc/inflexion/nouns/InflectionAffixes.java
index 4b1d2cf..facf9d0 100644
--- a/src/main/java/bjc/inflexion/nouns/InflectionAffixes.java
+++ b/src/main/java/bjc/inflexion/nouns/InflectionAffixes.java
@@ -21,7 +21,6 @@ import java.util.regex.Pattern;
* Utility methods for constructing inflection affixes.
*
* @author EVE
- *
*/
public class InflectionAffixes {
/*
@@ -48,9 +47,10 @@ public class InflectionAffixes {
* Create an affix that's a word by itself.
*
* @param suffix
- * The suffix to use.
+ * The suffix to use.
*
- * @return A affix that represents the suffix.
+ * @return
+ * A affix that represents the suffix.
*/
public static InflectionAffix complete(final String suffix) {
final Pattern patt = Pattern.compile(String.format(COMPLETE_PATT_FMT, suffix));
@@ -62,9 +62,10 @@ public class InflectionAffixes {
* Create an affix that's not a word by itself.
*
* @param suffix
- * The suffix to use.
+ * The suffix to use.
*
- * @return An affix that represents the suffix.
+ * @return
+ * An affix that represents the suffix.
*/
public static InflectionAffix incomplete(final String suffix) {
final Pattern patt = Pattern.compile(String.format(INCOMPLETE_PATT_FMT, suffix));