From 235208946ceb2bf0f422956a3ebc0ebb88ba28b6 Mon Sep 17 00:00:00 2001 From: "Benjamin J. Culkin" Date: Wed, 11 Oct 2017 21:34:29 -0300 Subject: Cleanup --- .../java/bjc/inflexion/nouns/InflectionAffix.java | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/main/java/bjc/inflexion/nouns/InflectionAffix.java') diff --git a/src/main/java/bjc/inflexion/nouns/InflectionAffix.java b/src/main/java/bjc/inflexion/nouns/InflectionAffix.java index 54588a2..d224340 100644 --- a/src/main/java/bjc/inflexion/nouns/InflectionAffix.java +++ b/src/main/java/bjc/inflexion/nouns/InflectionAffix.java @@ -19,17 +19,16 @@ package bjc.inflexion.nouns; * An affix attached to a word and used for inflection. * * @author EVE - * */ public interface InflectionAffix { - /** * Check if a word has this affix. * * @param word - * The word to check. + * The word to check. * - * @return Whether or not the word has the affix. + * @return + * Whether or not the word has the affix. */ boolean hasAffix(String word); @@ -37,9 +36,10 @@ public interface InflectionAffix { * Remove the affix from a word. * * @param word - * The word to remove the affix from. + * The word to remove the affix from. * - * @return The word with the affix removed. + * @return + * The word with the affix removed. */ String deaffix(String word); @@ -47,10 +47,10 @@ public interface InflectionAffix { * Apply this affix to a word. * * @param word - * The word to apply the affix to. + * The word to apply the affix to. * - * @return The word with the affix applied. + * @return + * The word with the affix applied. */ String affix(String word); - -} \ No newline at end of file +} -- cgit v1.2.3