From 2ddfc652403337f0d4081bd83d291665289155e7 Mon Sep 17 00:00:00 2001 From: Abdulrahim Al Methiab <31316147+abdulmth@users.noreply.github.com> Date: Mon, 9 Oct 2023 19:02:00 +0200 Subject: [PATCH] fix links (#1255) --- bindings/wasm/src/verification/jws_verifier.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/wasm/src/verification/jws_verifier.rs b/bindings/wasm/src/verification/jws_verifier.rs index 2e04d64e68..6113674828 100644 --- a/bindings/wasm/src/verification/jws_verifier.rs +++ b/bindings/wasm/src/verification/jws_verifier.rs @@ -14,7 +14,7 @@ use crate::jose::WasmJwsAlgorithm; /// Verify a JWS signature secured with the `EdDSA` algorithm and curve `Ed25519`. /// -/// This function is useful when one is composing a {@link IJwsVerifier} that delegates +/// This function is useful when one is composing a `IJwsVerifier` that delegates /// `EdDSA` verification with curve `Ed25519` to this function. /// /// # Warning @@ -38,7 +38,7 @@ pub fn verify_ed25519( Ed25519Verifier::verify(input, &publicKey.0).wasm_result() } -/// An implementor of {@link IJwsVerifier} that can handle the +/// An implementor of `IJwsVerifier` that can handle the /// `EdDSA` algorithm. #[wasm_bindgen(js_name = EdDSAJwsVerifier)] pub struct WasmEdDSAJwsVerifier();