From 9d8a3c518bcefe1013d2de78f45cfa7e0b9095a3 Mon Sep 17 00:00:00 2001 From: Vlad Lazar Date: Thu, 24 Jul 2025 15:33:18 +0100 Subject: [PATCH] fixup: format doc comment --- libs/utils/src/auth.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/utils/src/auth.rs b/libs/utils/src/auth.rs index bd7dda9717..e7cc17acfa 100644 --- a/libs/utils/src/auth.rs +++ b/libs/utils/src/auth.rs @@ -228,9 +228,9 @@ impl JwtAuth { /// Create a `JwtAuth` that can decode tokens using RSA public keys in X509 certificates from the given path. /// - `cert_path`: the path to a directory or a file containing X509 certificates. If it is a directory, all files - /// under the first level of the directory will be inspected for certificates. - /// Returns the `JwtAuth` with the decoding keys extracted from the certificates, or error. - /// Used by Hadron. + /// under the first level of the directory will be inspected for certificates. + /// Returns the `JwtAuth` with the decoding keys extracted from the certificates, or error. + /// Used by Hadron. pub fn from_cert_path(cert_path: &Utf8Path) -> Result { tracing::info!( "Loading public keys in certificates from path: {}",