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

@ -47,7 +47,10 @@ impl ScopeSequence {
if self.0.len() != text.len() {
panic!(
"Inconsistent scope sequence: {:?}",
self.0.iter().zip(text.iter().map(|c| *c as char)).collect::<Vec<_>>()
self.0
.iter()
.zip(text.iter().map(|c| *c as char))
.collect::<Vec<_>>()
);
}