diff options
| author | Jakub Wilk <jwilk@jwilk.net> | 2015-12-10 11:39:45 +0100 |
|---|---|---|
| committer | Tomaz Solc <tomaz.solc@tablix.org> | 2015-12-10 14:25:49 +0100 |
| commit | 6484dcbf2d651ef8e49ba982c2474044b185c8ae (patch) | |
| tree | 36ebe93cec1366ef48743f13f6088df5859dfae1 | |
| parent | 0c47a034eb9f88b7747c79a82b0d03809bb5e1f6 (diff) | |
| download | unidecode-6484dcbf2d651ef8e49ba982c2474044b185c8ae.tar.gz | |
Fix typos
| -rw-r--r-- | tests/test_unidecode.py | 2 | ||||
| -rw-r--r-- | unidecode/__init__.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_unidecode.py b/tests/test_unidecode.py index edf21d9..f078e4b 100644 --- a/tests/test_unidecode.py +++ b/tests/test_unidecode.py @@ -225,7 +225,7 @@ class BaseTestUnidecode(): (_u('\ua500'), ''), - # Table that has less than 256 entriees + # Table that has less than 256 entries (_u('\u1eff'), ''), ] diff --git a/unidecode/__init__.py b/unidecode/__init__.py index 1078fb6..3b68de4 100644 --- a/unidecode/__init__.py +++ b/unidecode/__init__.py @@ -39,7 +39,7 @@ def unidecode_expect_ascii(string): transliteration using the character tables. This is approx. five times faster if the string only contains ASCII - characters, but sligthly slower than using unidecode directly if non-ASCII + characters, but slightly slower than using unidecode directly if non-ASCII chars are present. """ |
