From 2a62ef3c7ab5d7b12d1be20717b14017f7e6ddc4 Mon Sep 17 00:00:00 2001 From: Justin Traglia <95511699+jtraglia@users.noreply.github.com> Date: Thu, 19 Sep 2024 09:13:23 -0500 Subject: [PATCH] Fix length comment Co-authored-by: Benedikt Wagner <113296072+b-wagn@users.noreply.github.com> --- src/eip7594/poly.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eip7594/poly.c b/src/eip7594/poly.c index c4c5378b..ca1aebb5 100644 --- a/src/eip7594/poly.c +++ b/src/eip7594/poly.c @@ -31,7 +31,7 @@ * Multiplies each coefficient by `shift_factor ^ i`. Equivalent to creating a polynomial that * evaluates at `x * shift_factor` rather than `x`. * - * @param[in,out] p The polynomial coefficients to be scaled, length `p` + * @param[in,out] p The polynomial coefficients to be scaled, length `len` * @param[in] len Length of the polynomial coefficients * @param[in] shift_factor Shift factor */