From 6c307cc6dfb8088281c1432814068f472d0a03d4 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Tue, 11 Apr 2017 21:57:48 -0400 Subject: Cleanup --- src/main/java/bjc/inflexion/nouns/InflectionAffix.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 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 d8c8cb4..54588a2 100644 --- a/src/main/java/bjc/inflexion/nouns/InflectionAffix.java +++ b/src/main/java/bjc/inflexion/nouns/InflectionAffix.java @@ -17,7 +17,7 @@ package bjc.inflexion.nouns; /** * An affix attached to a word and used for inflection. - * + * * @author EVE * */ @@ -25,30 +25,30 @@ public interface InflectionAffix { /** * Check if a word has this affix. - * + * * @param word * The word to check. - * + * * @return Whether or not the word has the affix. */ boolean hasAffix(String word); /** * Remove the affix from a word. - * + * * @param word * The word to remove the affix from. - * + * * @return The word with the affix removed. */ String deaffix(String word); /** * Apply this affix to a word. - * + * * @param word * The word to apply the affix to. - * + * * @return The word with the affix applied. */ String affix(String word); -- cgit v1.2.3