From 9c1adbd83bc32c78d9948ce85a26f822a72ede08 Mon Sep 17 00:00:00 2001 From: kaleb-himes Date: Mon, 13 Mar 2023 14:56:46 -0600 Subject: [PATCH] Fix typo's in the code sample(s) --- doc/dox_comments/header_files/aes.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/dox_comments/header_files/aes.h b/doc/dox_comments/header_files/aes.h index a3efb2feb..1b281ba51 100644 --- a/doc/dox_comments/header_files/aes.h +++ b/doc/dox_comments/header_files/aes.h @@ -871,7 +871,7 @@ int wc_AesXtsFree(XtsAes* aes); //heap hint could be set here if used - wc_AesInit(&aes, hint, devId); + wc_AesInit(&enc, hint, devId); \endcode \sa wc_AesSetKey @@ -898,9 +898,9 @@ int wc_AesInit(Aes* aes, void* heap, int devId); //heap hint could be set here if used - wc_AesInit(&aes, hint, devId); + wc_AesInit(&enc, hint, devId); // ... do some interesting things ... - wc_AesFree(&aes); + wc_AesFree(&enc); \endcode \sa wc_AesInit