typo
All checks were successful
CI / build (push) Successful in 51s
CI / checks (push) Successful in 1m14s
CI / build-nixpkgs (push) Successful in 40s

This commit is contained in:
Robin Appelman 2025-08-22 14:54:04 +02:00
commit 7c997464a3

View file

@ -106,7 +106,7 @@ impl<'a> RouteMatch<'a> {
impl<'a> From<&RouteMatch<'a>> for Cow<'a, str> {
fn from(value: &RouteMatch<'a>) -> Self {
match value {
RouteMatch::Unmatched => "Umatched".into(),
RouteMatch::Unmatched => "Unmatched".into(),
RouteMatch::Route(route, _) => (*route).into(),
RouteMatch::Remote(a, "") => format!("remote.{a}").into(),
RouteMatch::Public(a, "") => format!("public.{a}").into(),