Skip to content

Commit

Permalink
add morphology for present-participle: lie=>lying
Browse files Browse the repository at this point in the history
  • Loading branch information
ekoontz committed Jul 27, 2024
1 parent f77ad9b commit e99aa2a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions resources/english/morphology/verbs.edn
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,12 @@
:u {:cat :verb
:infl :base}}

;; tie/tying
{:g [#"^(.*)ie$" "$1ying"]
:p [#"^(.*)ying$" "$1ie"]
:u {:cat :verb
:infl :present-participle}}

;; abandon/abandoning
{:g [#"^(.*[o])([n])$" "$1$2ing"]
:p [#"^(.*[o][n])ing$" "$1"]
Expand Down

0 comments on commit e99aa2a

Please sign in to comment.