Skip to content

Commit 7df958e

Browse files
authored
Merge pull request #263 from timgates42/bugfix_typos
docs: Fix a few typos
2 parents 955bb45 + 45c918f commit 7df958e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/ecdsa/ellipticcurve.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1274,7 +1274,7 @@ class PointEdwards(AbstractPoint):
12741274

12751275
def __init__(self, curve, x, y, z, t, order=None):
12761276
"""
1277-
Initialise a point that uses the extended coordinates interanlly.
1277+
Initialise a point that uses the extended coordinates internally.
12781278
"""
12791279
super(PointEdwards, self).__init__()
12801280
self.__curve = curve

src/ecdsa/numbertheory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Written in 2005 and 2006 by Peter Pearson and placed in the public domain.
88
# Revision history:
99
# 2008.11.14: Use pow(base, exponent, modulus) for modular_exp.
10-
# Make gcd and lcm accept arbitrarly many arguments.
10+
# Make gcd and lcm accept arbitrarily many arguments.
1111

1212
from __future__ import division
1313

src/ecdsa/test_malformed_sigs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def st_random_der_ecdsa_sig_value(draw):
174174
note("Configuration: {0}".format(name))
175175
order = int(verifying_key.curve.order)
176176

177-
# the encode_integer doesn't suport negative numbers, would be nice
177+
# the encode_integer doesn't support negative numbers, would be nice
178178
# to generate them too, but we have coverage for remove_integer()
179179
# verifying that it doesn't accept them, so meh.
180180
# Test all numbers around the ones that can show up (around order)

versioneer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@
179179
`setup.cfg`, and `tox.ini`. Projects like these produce multiple PyPI
180180
distributions (and upload multiple independently-installable tarballs).
181181
* Source trees whose main purpose is to contain a C library, but which also
182-
provide bindings to Python (and perhaps other langauges) in subdirectories.
182+
provide bindings to Python (and perhaps other languages) in subdirectories.
183183
184184
Versioneer will look for `.git` in parent directories, and most operations
185185
should get the right version string. However `pip` and `setuptools` have bugs

0 commit comments

Comments
 (0)