Fix incorrect parameter name in mbedtls_mpi_core_add_if() doc comment

Signed-off-by: Tom Cosgrove <tom.cosgrove@arm.com>
This commit is contained in:
Tom Cosgrove 2022-08-25 10:13:44 +01:00
parent b2c06f4acf
commit ecbb124292

View File

@ -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.
*