Correct spelling mistakes

This commit is contained in:
Edward Betts 2018-11-23 07:38:21 +00:00
parent 13102d3eed
commit 010d1843c0
5 changed files with 6 additions and 6 deletions

View File

@ -88,7 +88,7 @@ class CodeInputter(object):
if self._committed_nameplate: if self._committed_nameplate:
if not got_nameplate or nameplate != self._committed_nameplate: if not got_nameplate or nameplate != self._committed_nameplate:
# they deleted past the committment point: we can't use # they deleted past the commitment point: we can't use
# this. For now, bail, but in the future let's find a # this. For now, bail, but in the future let's find a
# gentler way to encourage them to not do that. # gentler way to encourage them to not do that.
raise AlreadyInputNameplateError( raise AlreadyInputNameplateError(
@ -140,7 +140,7 @@ class CodeInputter(object):
if self._committed_nameplate: if self._committed_nameplate:
if nameplate != self._committed_nameplate: if nameplate != self._committed_nameplate:
# they deleted past the committment point: we can't use # they deleted past the commitment point: we can't use
# this. For now, bail, but in the future let's find a # this. For now, bail, but in the future let's find a
# gentler way to encourage them to not do that. # gentler way to encourage them to not do that.
raise AlreadyInputNameplateError( raise AlreadyInputNameplateError(

View File

@ -178,7 +178,7 @@ CommonArgs = _compose(
"--hide-progress", "--hide-progress",
is_flag=True, is_flag=True,
default=False, default=False,
help="supress progress-bar display", help="suppress progress-bar display",
), ),
click.option( click.option(
"--listen/--no-listen", "--listen/--no-listen",

View File

@ -1,4 +1,4 @@
# no unicode_literals untill twisted update # no unicode_literals until twisted update
from click.testing import CliRunner from click.testing import CliRunner
from twisted.application import internet, service from twisted.application import internet, service
from twisted.internet import defer, endpoints, reactor, task from twisted.internet import defer, endpoints, reactor, task

View File

@ -357,7 +357,7 @@ class Connection(protocol.Protocol, policies.TimeoutMixin):
self.setTimeout(None) self.setTimeout(None)
d, self._negotiation_d = self._negotiation_d, None d, self._negotiation_d = self._negotiation_d, None
# the Deferred is only relevant until negotiation finishes, so skip # the Deferred is only relevant until negotiation finishes, so skip
# this if it's alredy been fired # this if it's already been fired
if d: if d:
# Each call to loseConnection() sets self._error first, so we can # Each call to loseConnection() sets self._error first, so we can
# deliver useful information to the Factory that's waiting on # deliver useful information to the Factory that's waiting on

View File

@ -180,7 +180,7 @@ two common reasons why `setup.py` might not be in the root:
`setup.cfg`, and `tox.ini`. Projects like these produce multiple PyPI `setup.cfg`, and `tox.ini`. Projects like these produce multiple PyPI
distributions (and upload multiple independently-installable tarballs). distributions (and upload multiple independently-installable tarballs).
* Source trees whose main purpose is to contain a C library, but which also * Source trees whose main purpose is to contain a C library, but which also
provide bindings to Python (and perhaps other langauges) in subdirectories. provide bindings to Python (and perhaps other languages) in subdirectories.
Versioneer will look for `.git` in parent directories, and most operations Versioneer will look for `.git` in parent directories, and most operations
should get the right version string. However `pip` and `setuptools` have bugs should get the right version string. However `pip` and `setuptools` have bugs