From dbf3b02428c212de312fc8104524ac7bb6a79a79 Mon Sep 17 00:00:00 2001 From: Nils Wireklint Date: Thu, 13 Mar 2025 10:45:38 +0100 Subject: [PATCH] Fix typo --- gix-url/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gix-url/src/lib.rs b/gix-url/src/lib.rs index 44d2b348296..caf9ef6a473 100644 --- a/gix-url/src/lib.rs +++ b/gix-url/src/lib.rs @@ -83,7 +83,7 @@ pub enum ArgumentSafety<'a> { /// URLs may contain passwords and using standard [formatting](std::fmt::Display) will redact /// such password, whereas [lossless serialization](Url::to_bstring()) will contain all parts of the /// URL. -/// **Beware that some URls still print secrets if they use them outside of the designated password fields.** +/// **Beware that some URLs still print secrets if they use them outside of the designated password fields.** /// /// Also note that URLs that fail to parse are typically stored in [the resulting error](parse::Error) type /// and printed in full using its display implementation.