summaryrefslogtreecommitdiff
path: root/natsort/unicode_numbers.py
diff options
context:
space:
mode:
Diffstat (limited to 'natsort/unicode_numbers.py')
-rw-r--r--natsort/unicode_numbers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/natsort/unicode_numbers.py b/natsort/unicode_numbers.py
index 7800fd2..94cf0ff 100644
--- a/natsort/unicode_numbers.py
+++ b/natsort/unicode_numbers.py
@@ -24,7 +24,7 @@ for a in numeric_hex:
# The digit characters are a subset of the numerals.
digit_chars = [a for a in numeric_chars if unicodedata.digit(a, None) is not None]
-# The decimal characters are a subset of the numberals
+# The decimal characters are a subset of the numerals
# (probably of the digits, but let's be safe).
decimal_chars = [a for a in numeric_chars if unicodedata.decimal(a, None) is not None]