From 40d229487dce6e2a1b3029fb099d74c1703ab050 Mon Sep 17 00:00:00 2001 From: Tom Cosgrove Date: Wed, 17 Aug 2022 06:42:44 +0100 Subject: [PATCH] Tidy up doc comments on existing function mpi_montmul() Signed-off-by: Tom Cosgrove --- library/bignum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/bignum.c b/library/bignum.c index 48bc77cfc..f60ac16c8 100644 --- a/library/bignum.c +++ b/library/bignum.c @@ -1564,7 +1564,7 @@ static void mpi_montg_init( mbedtls_mpi_uint *mm, const mbedtls_mpi *N ) * \param[in] B One of the numbers to multiply. * It must be nonzero and must not have more limbs than N * (B->n <= N->n). - * \param[in] N The modulo. N must be odd. + * \param[in] N The modulus. \p N must be odd. * \param mm The value calculated by `mpi_montg_init(&mm, N)`. * This is -N^-1 mod 2^ciL. * \param[in,out] T A bignum for temporary storage.