From 2f6a7807f7180fb467e3d06f2af4263a45759c28 Mon Sep 17 00:00:00 2001 From: Ben Culkin Date: Mon, 13 Apr 2020 18:44:24 -0400 Subject: Cleanup pass Pass to do some cleanups --- src/main/java/bjc/inflexion/nouns/InflectionAffix.java | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 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 65c6500..2d4d616 100644 --- a/src/main/java/bjc/inflexion/nouns/InflectionAffix.java +++ b/src/main/java/bjc/inflexion/nouns/InflectionAffix.java @@ -24,10 +24,9 @@ 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); @@ -35,10 +34,9 @@ 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); @@ -46,10 +44,9 @@ 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); } -- cgit v1.2.3