Skip to content

Commit

Permalink
prevent "stop"-> *"stoping"
Browse files Browse the repository at this point in the history
  • Loading branch information
ekoontz committed Aug 1, 2024
1 parent 4072223 commit 51d0a99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/english/morphology/verbs.edn
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,13 @@
:infl :present-participle}}

;; develop/developing
{:g [#"^(.*(ain|bit|eep|en|il|op))$" "$1ing"]
:p [#"^(.*(ain|bit|eep|en|il|op))ing$" "$1"]
{:g [#"^(.*(ain|bit|eep|en|il|lop))$" "$1ing"]
:p [#"^(.*(ain|bit|eep|en|il|lop))ing$" "$1"]
:u {:cat :verb
:infl :present-participle}}

;; stop/stopping,put/putting,run/running,let/letting
{:g [#"^(.*[eiou])([bglmnpst])$" "$1$2$2ing"]
{:g [#"^(.*[eiou])([bglmnpst])$" "$1$2$2ing"]
:p [#"^(.*[eiou][bglmnpst])([bglmnpst])ing$" "$1"]
:u {:cat :verb
:infl :present-participle}}
Expand Down

0 comments on commit 51d0a99

Please sign in to comment.