From ecbb12429245ee5fa1dd224f6df4f000fe41e8a9 Mon Sep 17 00:00:00 2001 From: Tom Cosgrove Date: Thu, 25 Aug 2022 10:13:44 +0100 Subject: [PATCH] Fix incorrect parameter name in mbedtls_mpi_core_add_if() doc comment Signed-off-by: Tom Cosgrove --- library/bignum_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/bignum_core.h b/library/bignum_core.h index 7fd6fed911..e443d2cc5f 100644 --- a/library/bignum_core.h +++ b/library/bignum_core.h @@ -256,7 +256,7 @@ mbedtls_mpi_uint mbedtls_mpi_core_sub( mbedtls_mpi_uint *X, * \param cond Condition bit dictating whether addition should * happen or not. This must be \c 0 or \c 1. * - * \warning If \p assign is neither 0 nor 1, the result of this function + * \warning If \p cond is neither 0 nor 1, the result of this function * is unspecified, and the resulting value in \p A might be * neither its original value nor \p A + \p B. *