Skip to content

Commit fe62ed3

Browse files
committed
fix doc formatting
1 parent 24abe65 commit fe62ed3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ecdsa/ellipticcurve.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -632,10 +632,10 @@ def _leftmost_bit(x):
632632

633633
def mul_add(self, self_mul, other, other_mul):
634634
"""
635-
Do two multiplications at the same time, add results.
635+
Do two multiplications at the same time, add results.
636636
637-
calculates self*self_mul + other*other_mul
638-
"""
637+
calculates self*self_mul + other*other_mul
638+
"""
639639
if other is INFINITY or other_mul == 0:
640640
return self * self_mul
641641
if self_mul == 0:

0 commit comments

Comments
 (0)