From 41d7d8e4f39809332d8428a034cd2ad8199cd8eb Mon Sep 17 00:00:00 2001 From: yggverse Date: Sun, 1 Dec 2024 13:09:22 +0200 Subject: [PATCH] update comment --- src/client.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client.rs b/src/client.rs index ae9f474..85dcfbb 100644 --- a/src/client.rs +++ b/src/client.rs @@ -100,9 +100,9 @@ impl Client { // Setters - /// Change `session-resumption-enabled` property value to apply new certificate option in runtime - /// https://www.gnutls.org/manual/html_node/Session-resumption.html - /// * disabled by default + /// Change `session-resumption-enabled` property (`false` by default) + /// * [Gemini specification](https://geminiprotocol.net/docs/protocol-specification.gmi#client-certificates) + /// * [GnuTLS manual](https://www.gnutls.org/manual/html_node/Session-resumption.html) pub fn set_session_resumption(&mut self, is_enabled: bool) { self.is_session_resumption = is_enabled }