slight typo in parameters fixed

This commit is contained in:
shockrah 2020-06-01 22:25:21 -07:00
parent b3289ca9bd
commit c1f8ebee1d

View File

@ -25,7 +25,7 @@ fn map_qs(string: Option<&str>) -> HashMap<&str, Option<&str>> {
unimplemented!()
}
async fn route_dispatcher(resp: &Response<Body>, meth: &Method, &path: &str, params: &HashMap<&str, Option<&str>>) {
async fn route_dispatcher(resp: &Response<Body>, meth: &Method, path: &str, params: &HashMap<&str, Option<&str>>) {
// we do have to handle some general hyper errors
unimplemented!()
}