chore(fmt): Apply 'cargo fmt' to the whole code base

This commit is contained in:
Andrew Hlynskyi 2021-05-16 17:55:58 +03:00
parent cf06ac4f82
commit 3c0152a331
6 changed files with 39 additions and 29 deletions

View file

@ -197,7 +197,8 @@ pub fn parse_file_at_path(
did_visit_children = true;
let start = node.start_byte();
let end = node.end_byte();
let value = std::str::from_utf8(&source_code[start..end]).expect("has a string");
let value =
std::str::from_utf8(&source_code[start..end]).expect("has a string");
write!(&mut stdout, "{}", html_escape::encode_text(value))?;
}
}