From f4dd3b6a6d6b86eb39c2114c25df602d1c04f846 Mon Sep 17 00:00:00 2001 From: Gabor Mezei Date: Fri, 16 Sep 2022 09:38:53 +0200 Subject: [PATCH] Fix documentation Signed-off-by: Gabor Mezei --- library/bignum_core.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/library/bignum_core.h b/library/bignum_core.h index 779fb08d9..cb932388e 100644 --- a/library/bignum_core.h +++ b/library/bignum_core.h @@ -106,10 +106,9 @@ void mbedtls_mpi_core_cond_assign( mbedtls_mpi_uint *X, * * \param[IN,OUT] X The address of the first MPI. * This must be initialized. - * \param X_limbs The number of limbs of \p X. * \param[IN,OUT] Y The address of the second MPI. * This must be initialized. - * \param Y_limbs The number of limbs of \p Y. + * \param limbs The number of limbs of \p Y and \p X. * \param swap The condition deciding whether to perform * the swap or not. Must be either 0 or 1: * * \c 1: Swap the values of \p X and \p Y.