summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHubert Kario <hubert@kario.pl>2022-07-09 13:59:59 +0200
committerHubert Kario <hubert@kario.pl>2022-07-09 13:59:59 +0200
commit534eb3df418226a4ecc908393a3d701630ed6e84 (patch)
tree0deb75f68a4c41d31bb3c59447c947904ea07bea
parent3a8bc4e6dcd2c2c209f0ade440a70fd6485eaec7 (diff)
downloadecdsa-534eb3df418226a4ecc908393a3d701630ed6e84.tar.gz
fixup the curve equation
-rw-r--r--docs/source/ec_arithmetic.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/ec_arithmetic.rst b/docs/source/ec_arithmetic.rst
index 36d0ad4..39a13c9 100644
--- a/docs/source/ec_arithmetic.rst
+++ b/docs/source/ec_arithmetic.rst
@@ -24,7 +24,7 @@ Both of them use the curves specified using the
You can either provide your own curve parameters or use one of the predefined
curves.
-For example, to define a curve :math:`x^2 = x^3 + x + 4 \text{ mod } 5` use
+For example, to define a curve :math:`y^2 = x^3 + 1 * x + 4 \text{ mod } 5` use
code like this:
.. code:: python