summaryrefslogtreecommitdiff
path: root/src/main/java/bjc/inflexion/nouns/InflectionAffix.java
diff options
context:
space:
mode:
authorBenjamin J. Culkin <bjculkin@mix.wvu.edu>2020-09-10 17:12:59 -0300
committerBenjamin J. Culkin <bjculkin@mix.wvu.edu>2020-09-10 17:12:59 -0300
commit229054f4839ad99c8c9fc757cce7edc0d2ca3cf1 (patch)
treef9de568967b82c46f6d22eda9c843529b6045b5d /src/main/java/bjc/inflexion/nouns/InflectionAffix.java
parentcb45132debdbce593a235323e9155b5c47906558 (diff)
parente71ef0d03e87df19900db8328cda68d38d523b0b (diff)
Merge branch 'master' of https://github.com/bculkin2442/Inflexion
Diffstat (limited to 'src/main/java/bjc/inflexion/nouns/InflectionAffix.java')
-rw-r--r--src/main/java/bjc/inflexion/nouns/InflectionAffix.java15
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);
}