From 22a7c60a9a725f5cc89199bd57df3f8fd97969f5 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Fri, 4 Sep 2026 16:46:51 -0400 Subject: [PATCH] Rust wrapper: ecc: fix check() return value comment Fixes F-12247. --- wrapper/rust/wolfssl-wolfcrypt/src/ecc.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wrapper/rust/wolfssl-wolfcrypt/src/ecc.rs b/wrapper/rust/wolfssl-wolfcrypt/src/ecc.rs index 1049e7e2a43..3e3254a875d 100644 --- a/wrapper/rust/wolfssl-wolfcrypt/src/ecc.rs +++ b/wrapper/rust/wolfssl-wolfcrypt/src/ecc.rs @@ -1300,8 +1300,8 @@ impl ECC { /// /// # Returns /// - /// Returns either Ok(ECC) containing the ECC struct instance or Err(e) - /// containing the wolfSSL library error code value. + /// Returns either Ok(()) if the key is ok or Err(e) containing the wolfSSL + /// library error code value. /// /// # Example ///