summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHubert Kario <hkario@redhat.com>2022-07-09 14:18:38 +0200
committerGitHub <noreply@github.com>2022-07-09 14:18:38 +0200
commitaf3d97c8831c3a3f7c3388872da4bcf699f146aa (patch)
tree0deb75f68a4c41d31bb3c59447c947904ea07bea
parent3a8bc4e6dcd2c2c209f0ade440a70fd6485eaec7 (diff)
parent534eb3df418226a4ecc908393a3d701630ed6e84 (diff)
downloadecdsa-af3d97c8831c3a3f7c3388872da4bcf699f146aa.tar.gz
Merge pull request #303 from tlsfuzzer/equation-fix
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