From 61c1626343e941a6660fda3af1df249e3ac32b0a Mon Sep 17 00:00:00 2001 From: Leo Nash Date: Sat, 17 Jan 2026 01:12:21 +0000 Subject: [PATCH] Fix documentation for `SigsAuthProvider::new` --- src/headers/sigs_auth.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/headers/sigs_auth.rs b/src/headers/sigs_auth.rs index 0e797dd..3948970 100644 --- a/src/headers/sigs_auth.rs +++ b/src/headers/sigs_auth.rs @@ -57,8 +57,8 @@ impl SigsAuthProvider { /// This provides an incredibly simple authentication scheme and allows the server to ensure /// data for separate clients is kept separate, without any application-specific logic. /// - /// In addition to the automatically-added `Authentication` header, any headers provided in - /// `default_headers` (except an `Authentication` header) will be added to the headers list. + /// In addition to the automatically-added `Authorization` header, any headers provided in + /// `default_headers` (except an `Authorization` header) will be added to the headers list. pub fn new(key: SecretKey, default_headers: HashMap) -> Self { SigsAuthProvider { secp_ctx: Secp256k1::signing_only(), key, default_headers } }