Fix GitRegistry::url ret type

Signed-off-by: Jiahao XU <30436523+NobodyXu@users.noreply.github.com>
This commit is contained in:
Jiahao XU 2025-06-06 13:29:45 +10:00 committed by GitHub
parent 9298511d05
commit 4c1d6b45fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -73,7 +73,7 @@ impl GitRegistry {
}))
}
pub fn url(&self) -> impl Display + '_ {
pub fn url(&self) -> &GitUrl {
&self.0.url
}