Fix typo's in the code sample(s)

This commit is contained in:
kaleb-himes 2023-03-13 14:56:46 -06:00
parent 5bbdda6895
commit 9c1adbd83b

View File

@ -871,7 +871,7 @@ int wc_AesXtsFree(XtsAes* aes);
//heap hint could be set here if used //heap hint could be set here if used
wc_AesInit(&aes, hint, devId); wc_AesInit(&enc, hint, devId);
\endcode \endcode
\sa wc_AesSetKey \sa wc_AesSetKey
@ -898,9 +898,9 @@ int wc_AesInit(Aes* aes, void* heap, int devId);
//heap hint could be set here if used //heap hint could be set here if used
wc_AesInit(&aes, hint, devId); wc_AesInit(&enc, hint, devId);
// ... do some interesting things ... // ... do some interesting things ...
wc_AesFree(&aes); wc_AesFree(&enc);
\endcode \endcode
\sa wc_AesInit \sa wc_AesInit