Skip to content

Commit

Permalink
minor fixes in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedAmgd committed Nov 30, 2023
1 parent d409ba4 commit 959685c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public static String tashfeer(String text) {
* to
* resulting string: "هاء ذال هاء جيم ميم لام تاء_مربوطة"
*
* @param text The input string {@link String}
* @param word The input string {@link String}
* @return The resulting string {@link String}
*/
public static String wordToLetters(String word) {
Expand Down Expand Up @@ -135,8 +135,8 @@ public static String wordToLetters(String word) {
*
* @param word - The Arabic word from which the affixes are to be
* removed. {@link String}
* @returns The word after removing any matching affixes. Returns the
* original word if no affix matches are found. {@link String}
* @return The word after removing any matching affixes. Returns the
* original word if no affix matches are found. {@link String}
*/
public static String removeArabicAffixes(String word) {
if (Data.ARABIC_PREFIXES.contains(word.substring(0, 2))) {
Expand Down

0 comments on commit 959685c

Please sign in to comment.