Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/built-in-functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ Takes a signed hash and vrs and returns the public key of the signer.
def ecadd(a, b) -> sum:
"""
:param a: pair to be added
:type a: num252[2]
:type a: uint256[2]
:param b: pair to be added
:type b: num252[2]
:type b: uint256[2]

:output sum: uint256[2]
"""
Expand All @@ -206,9 +206,9 @@ Takes two elliptical curves and adds them together.
def ecmul(a, b) -> product:
"""
:param a: pair to be multiplied
:type a: num252[2]
:param b: pair to be multiplied
:type b: num252[2]
:type a: uint256[2]
:param b: number to be multiplied
:type b: uint256

:output product: uint256[2]
"""
Expand Down