aboutsummaryrefslogtreecommitdiffstats
path: root/chocula/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'chocula/util.py')
-rw-r--r--chocula/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chocula/util.py b/chocula/util.py
index 1d4a5d5..ed7398d 100644
--- a/chocula/util.py
+++ b/chocula/util.py
@@ -346,7 +346,7 @@ def clean_str(s: Optional[str]) -> Optional[str]:
# non-sorting
s.replace("\u02dc", "")
s.replace("\u0153", "")
- # there is a very samll chance this will filter out valid strings
+ # there is a very small chance this will filter out valid strings
if s.lower() in ("null", "n/a", "unknown"):
return None
return s or None