style(lib): use just std instead of ::std in paths (#2101)

This commit is contained in:
Linus Färnstrand
2020-01-29 19:25:57 +01:00
committed by GitHub
parent c4bb4db5c2
commit de7418da2f
14 changed files with 32 additions and 32 deletions

View File

@@ -2157,7 +2157,7 @@ impl ServeOptions {
}
fn s(buf: &[u8]) -> &str {
::std::str::from_utf8(buf).unwrap()
std::str::from_utf8(buf).unwrap()
}
fn has_header(msg: &str, name: &str) -> bool {