# HG changeset patch # User Martin von Zweigbergk # Date 1634276146 25200 # Node ID 1837663ac2166ec68517fa4db16cab6ddd2d1df0 # Parent c820866c52f987df62bb7f9db3408d1ffc040458 rhg: fix formatting error reported by test-check-format-rust.t Differential Revision: https://phab.mercurial-scm.org/D11670 diff -r c820866c52f9 -r 1837663ac216 rust/hg-core/src/operations/cat.rs --- a/rust/hg-core/src/operations/cat.rs Tue Oct 12 13:54:06 2021 -0700 +++ b/rust/hg-core/src/operations/cat.rs Thu Oct 14 22:35:46 2021 -0700 @@ -104,10 +104,8 @@ bytes.extend(file_log.data_for_node(file_node)?.data()?); } - let missing: Vec = missing - .iter() - .map(|file| (*file).to_owned()) - .collect(); + let missing: Vec = + missing.iter().map(|file| (*file).to_owned()).collect(); Ok(CatOutput { found_any, concatenated: bytes,