From d0a78e91b39e3851b69550d214872a812d1130ac Mon Sep 17 00:00:00 2001 From: Janos Follath Date: Mon, 6 Aug 2018 13:55:46 +0100 Subject: [PATCH] HKDF: Fix style issue --- include/mbedtls/hkdf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/mbedtls/hkdf.h b/include/mbedtls/hkdf.h index 6833e7272..235c5ad5e 100644 --- a/include/mbedtls/hkdf.h +++ b/include/mbedtls/hkdf.h @@ -99,8 +99,8 @@ int mbedtls_hkdf_extract( const mbedtls_md_info_t *md, * * \param md A hash function; md.size denotes the length of the hash * function output in bytes. - * \param prk A pseudorandom key of at least md.size bytes. \p prk is usually, - * the output from the HKDF extract step. + * \param prk A pseudorandom key of at least md.size bytes. \p prk is + * usually the output from the HKDF extract step. * \param prk_len The length in bytes of \p prk. * \param info An optional context and application specific information * string. This can be a zero-length string.