From dd24522e4201bf98ecff7407145fa1bfec0375f7 Mon Sep 17 00:00:00 2001 From: Enrico Marconi <31142849+UMR1352@users.noreply.github.com> Date: Tue, 15 Oct 2024 11:21:02 +0200 Subject: [PATCH] Update src/builder.rs Co-authored-by: Yasir --- src/builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builder.rs b/src/builder.rs index 1b9dca4..77435ee 100644 --- a/src/builder.rs +++ b/src/builder.rs @@ -100,7 +100,7 @@ impl SdJwtBuilder { /// Sets the JWT header. /// ## Notes /// - if [`SdJwtBuilder::header`] is not called, the default header is used: ```json { "typ": "sd-jwt", "alg": - /// "" } ``` + /// "" } ``` /// - `alg` is always replaced with the value passed to [`SdJwtBuilder::finish`]. pub fn header(mut self, header: JsonObject) -> Self { self.header = header;