From bfa04ca5be592df73057ff2c25995ecad6616ec1 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Tue, 28 Oct 2025 08:32:12 -0400 Subject: [PATCH] Rust wrapper: cmac: fix "success" typo --- wrapper/rust/wolfssl/src/wolfcrypt/cmac.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrapper/rust/wolfssl/src/wolfcrypt/cmac.rs b/wrapper/rust/wolfssl/src/wolfcrypt/cmac.rs index ca6a73724..babd9d262 100644 --- a/wrapper/rust/wolfssl/src/wolfcrypt/cmac.rs +++ b/wrapper/rust/wolfssl/src/wolfcrypt/cmac.rs @@ -129,7 +129,7 @@ impl CMAC { /// # Returns /// /// Returns either Ok(valid) (with valid indicating if the CMAC passed in - /// is correct or not) on succe or Err(e) containing the wolfSSL library + /// is correct or not) on success or Err(e) containing the wolfSSL library /// error code value. /// /// # Example