Run rustfmt over everything

This commit is contained in:
Alex Crichton
2018-11-27 12:07:59 -08:00
parent 4a70198143
commit 48f4adfa8c
45 changed files with 872 additions and 800 deletions

View File

@ -98,7 +98,8 @@ pub fn spawn(
// header?)
response.headers.retain(|(k, _)| k != "Cache-Control");
return response;
}).map_err(|e| format_err!("{}", e))?;
})
.map_err(|e| format_err!("{}", e))?;
return Ok(srv);
fn try_asset(request: &Request, dir: &Path) -> Response {