From 82f131063a871f40f9cd06ceb59735530514f4ef Mon Sep 17 00:00:00 2001 From: Tom Cosgrove Date: Tue, 25 Oct 2022 12:46:03 +0100 Subject: [PATCH] Update documentation following review 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 8cc985ef3..084af7487 100644 --- a/library/bignum_core.h +++ b/library/bignum_core.h @@ -282,7 +282,7 @@ void mbedtls_mpi_core_shift_r( mbedtls_mpi_uint *X, size_t limbs, * * Calculates `A + B` where `A` and `B` have the same size. * - * This function operates modulo 2^(biL*limbs) and returns the carry + * This function operates modulo `2^(biL*limbs)` and returns the carry * (1 if there was a wraparound, and 0 otherwise). * * \p X may be aliased to \p A or \p B.