diff options
author | Martin Czygan <martin.czygan@gmail.com> | 2020-12-09 22:50:38 +0100 |
---|---|---|
committer | Martin Czygan <martin.czygan@gmail.com> | 2020-12-09 22:50:38 +0100 |
commit | bae9820e4203f8ab692a2b1ba4c9aa4207b425c6 (patch) | |
tree | c8a2fca3290fecda222f6fd3ab571494b02e7344 | |
parent | 5c9210b99f8db9686e3f2cefe34df3d512f692de (diff) | |
download | fuzzycat-bae9820e4203f8ab692a2b1ba4c9aa4207b425c6.tar.gz fuzzycat-bae9820e4203f8ab692a2b1ba4c9aa4207b425c6.zip |
fix typo
-rw-r--r-- | fuzzycat/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzzycat/common.py b/fuzzycat/common.py index 2257e9d..b31a233 100644 --- a/fuzzycat/common.py +++ b/fuzzycat/common.py @@ -5,7 +5,7 @@ class Status(str, Enum): """ Match status. """ - AMBIGUOUS = 'ambigiuous' + AMBIGUOUS = 'ambiguous' DIFFERENT = 'different' EXACT = 'exact' STRONG = 'strong' |