We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b70e3cc commit c33c7e9Copy full SHA for c33c7e9
crates/http/src/routes.rs
@@ -146,7 +146,7 @@ impl Router {
146
pub fn contains_reserved_route(&self) -> bool {
147
self.router
148
.iter()
149
- .any(|(_spec, handker)| handker.based_route.starts_with(crate::WELL_KNOWN_PREFIX))
+ .any(|(_spec, handler)| handler.based_route.starts_with(crate::WELL_KNOWN_PREFIX))
150
}
151
152
/// This returns the component ID that should handle the given path, or an error
0 commit comments