summaryrefslogtreecommitdiff
path: root/pkg_resources
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2015-03-30 03:40:43 +0200
committerArfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>2015-03-30 03:40:43 +0200
commit933e26cd75231ba6402c38e4044e001a5d47fa3f (patch)
tree09cd6f421e7a7608fc956bbde602ac3e6fc9d11e /pkg_resources
parent8cff8857708d580441192c02af9dab910ba11ebb (diff)
downloadpython-setuptools-git-933e26cd75231ba6402c38e4044e001a5d47fa3f.tar.gz
Fix some typos.
Diffstat (limited to 'pkg_resources')
-rw-r--r--pkg_resources/__init__.py4
-rw-r--r--pkg_resources/_vendor/packaging/specifiers.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/pkg_resources/__init__.py b/pkg_resources/__init__.py
index a8a16942..f033c10e 100644
--- a/pkg_resources/__init__.py
+++ b/pkg_resources/__init__.py
@@ -2528,7 +2528,7 @@ class Distribution(object):
if not is_legacy:
return
- # While an empty version is techincally a legacy version and
+ # While an empty version is technically a legacy version and
# is not a valid PEP 440 version, it's also unlikely to
# actually come from someone and instead it is more likely that
# it comes from setuptools attempting to parse a filename and
@@ -2542,7 +2542,7 @@ class Distribution(object):
non PEP 440,
version. You may find odd behavior and sort order.
In particular it will be sorted as less than 0.0. It
- is recommend to migrate to PEP 440 compatible
+ is recommended to migrate to PEP 440 compatible
versions.
""").strip().replace('\n', ' ')
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