address clippy & rustdoc warnings

The comment was out of date anyway, State::Live no longer takes a
snapshot_path argument.
This commit is contained in:
Mira Ressel
2023-03-16 15:38:06 +01:00
parent fc5b3f4f1c
commit faaa0c2851
4 changed files with 4 additions and 9 deletions
@@ -450,7 +450,7 @@ impl Headers {
/// and collect them on your own.
pub fn find(&self, name: &str) -> Option<&str> {
let raw = name.as_bytes();
for &(ref key, ref val) in &self.raw {
for (key, val) in &self.raw {
if &**key == raw {
return str::from_utf8(val).ok()
}