From aa986a2b241a8670c610af5188520532e96f933e Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Tue, 22 Jul 2025 08:27:00 -0400 Subject: [PATCH] Update doxygen comment style per code review comments --- wolfcrypt/src/asn.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wolfcrypt/src/asn.c b/wolfcrypt/src/asn.c index c5767aca5..1e9d3369e 100644 --- a/wolfcrypt/src/asn.c +++ b/wolfcrypt/src/asn.c @@ -2581,10 +2581,10 @@ int GetSequence_ex(const byte* input, word32* inOutIdx, int* len, * @param[out] outSz Buffer in which to store the length of the th * element of the SEQUENCE OF object. * - * @retval 0 on success. - * @retval BUFFER_E when there is not enough data to parse. - * @retval BAD_INDEX_E when the given seqIndex is out of range. - * @retval ASN_PARSE_E when the seqOf is not in the expected format. + * @return 0 on success. + * @return BUFFER_E when there is not enough data to parse. + * @return BAD_INDEX_E when the given seqIndex is out of range. + * @return ASN_PARSE_E when the seqOf is not in the expected format. */ int IndexSequenceOf(byte const * seqOf, word32 seqOfSz, size_t seqIndex, byte const ** out, word32 * outSz)