Typo Borrow instead of Carry in return type

This commit is contained in:
Mamy André-Ratsimbazafy 2020-12-13 18:57:23 +01:00
parent a022db1c08
commit c89c78d2d9
No known key found for this signature in database
GPG Key ID: 7B88AD1FE79492E1
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ func cadd*(a: var Limbs, b: Limbs, ctl: SecretBool): Carry =
result = t.add(b)
a.ccopy(t, ctl)
func cadd*(a: var Limbs, w: SecretWord, ctl: SecretBool): Borrow =
func cadd*(a: var Limbs, w: SecretWord, ctl: SecretBool): Carry =
## Limbs conditional addition, sub a number that fits in a word
## Returns the borrow
var t = a