aboutsummaryrefslogtreecommitdiffstats
path: root/pkg_resources/_vendor
diff options
context:
space:
mode:
Diffstat (limited to 'pkg_resources/_vendor')
-rw-r--r--pkg_resources/_vendor/packaging/specifiers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg_resources/_vendor/packaging/specifiers.py b/pkg_resources/_vendor/packaging/specifiers.py
index 9ad0a635..77516cf4 100644
--- a/pkg_resources/_vendor/packaging/specifiers.py
+++ b/pkg_resources/_vendor/packaging/specifiers.py
@@ -502,7 +502,7 @@ class Specifier(_IndividualSpecifier):
return False
# Ensure that we do not allow a local version of the version mentioned
- # in the specifier, which is techincally greater than, to match.
+ # in the specifier, which is technically greater than, to match.
if prospective.local is not None:
if Version(prospective.base_version) == Version(spec.base_version):
return False