Skip to content

Commit

Permalink
Update core/src/main/scala/org/dbpedia/extraction/util/GeezNumberUtil…
Browse files Browse the repository at this point in the history
…s.scala

Co-authored-by: Ted Thibodeau Jr <[email protected]>
  • Loading branch information
Meti-Adane and TallTed authored Sep 8, 2024
1 parent ab670c1 commit 285a381
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class GeezNumberUtils {
stack.toList
}

// Recursively calculates and performs the calcualtion to convert geez number to arabic numerals.
// Recursively calculates and performs the calculation to convert geez numbers to Arabic numerals.
def calculate(start: Int, end: Int, arr: List[Int]): Option[Int] = {
if (start > end) return None
if (start == end) {
Expand Down

0 comments on commit 285a381

Please sign in to comment.