diff options
| author | Ben Culkin <scorpress@gmail.com> | 2020-04-13 18:44:24 -0400 |
|---|---|---|
| committer | Ben Culkin <scorpress@gmail.com> | 2020-04-13 18:44:24 -0400 |
| commit | 2f6a7807f7180fb467e3d06f2af4263a45759c28 (patch) | |
| tree | a2c07895dd0f2ab60e864f402e8a38ad0ca0735a /src/main/java/bjc/inflexion/nouns/InflectionAffix.java | |
| parent | 5c76def2cdba199ca42ffc440506f6c17624196d (diff) | |
Cleanup pass
Pass to do some cleanups
Diffstat (limited to 'src/main/java/bjc/inflexion/nouns/InflectionAffix.java')
| -rw-r--r-- | src/main/java/bjc/inflexion/nouns/InflectionAffix.java | 15 |
1 files changed, 6 insertions, 9 deletions
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); } |
