From 2e17858a399048d6fcea59be6f0f03bdb06842e4 Mon Sep 17 00:00:00 2001 From: yggverse Date: Wed, 27 Nov 2024 21:42:15 +0200 Subject: [PATCH] update comments --- src/profile/identity/gemini.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/profile/identity/gemini.rs b/src/profile/identity/gemini.rs index f6711dbf..c4627768 100644 --- a/src/profile/identity/gemini.rs +++ b/src/profile/identity/gemini.rs @@ -109,9 +109,9 @@ impl Gemini { Ok(()) } - /// Get `pem` record match `request` + /// Get `Identity` match `request` /// * [Client certificates specification](https://geminiprotocol.net/docs/protocol-specification.gmi#client-certificates) - /// * this function work with memory cache collected (not database) + /// * this function work with memory cache (not database) pub fn match_priority(&self, request: &str) -> Option { if let Some(auth) = self.auth.memory.match_priority(request) { match self.memory.get(auth.profile_identity_gemini_id) {