From 117e0d77c187ee81b8bcf1b56a706033432b015a Mon Sep 17 00:00:00 2001 From: kaleb-himes Date: Tue, 28 Oct 2025 10:51:20 -0600 Subject: [PATCH] Fix a typo I noticed and expound a bit on the comment --- wolfSSL-FIPS-FAQ/src/section02.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wolfSSL-FIPS-FAQ/src/section02.md b/wolfSSL-FIPS-FAQ/src/section02.md index 518c34e3..8f490af7 100644 --- a/wolfSSL-FIPS-FAQ/src/section02.md +++ b/wolfSSL-FIPS-FAQ/src/section02.md @@ -166,7 +166,9 @@ Example: ``` wolfCrypt_SetCb_fips(myFipsCb); -/* Alternatively call wolfSSL_INit() or comparable API */ +/* Alternatively call wolfSSL_Init() or comparable API + * that sets up the seed callback by default + */ #ifdef WC_RNG_SEED_CB wc_SetSeed_Cb(wc_GenerateSeed); #endif