diff options
author | Vincent Ambo <mail@tazj.in> | 2022-08-12T14·30+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-08-27T09·27+0000 |
commit | 1d86c4537ea9e693e497407972b23d47bab53969 (patch) | |
tree | c95f2cfed9f9b6d423af35fcb16ca917131548d2 /tvix/eval/src/value/attrs.rs | |
parent | 0a09356f823f53044f92d44e04289d0f051cfc08 (diff) |
refactor(tvix/eval): use `write!` macro instead of `f.write_fmt` r/4514
grfn pointed out in cl/6082 that this is actually the desugaring of the write! macro, so it doesn't make sense to write it out. Change-Id: If7c055b042ad22b034722aec1eaadba92736d684 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6180 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org> Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'tvix/eval/src/value/attrs.rs')
-rw-r--r-- | tvix/eval/src/value/attrs.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tvix/eval/src/value/attrs.rs b/tvix/eval/src/value/attrs.rs index 2efeaad41306..1b76eb1966d3 100644 --- a/tvix/eval/src/value/attrs.rs +++ b/tvix/eval/src/value/attrs.rs @@ -77,13 +77,13 @@ impl Display for NixAttrs { match &self.0 { AttrsRep::KV { name, value } => { - f.write_fmt(format_args!("name = {}; ", name))?; - f.write_fmt(format_args!("value = {}; ", value))?; + write!(f, "name = {}; ", name)?; + write!(f, "value = {}; ", value)?; } AttrsRep::Map(map) => { for (name, value) in map.iter() { - f.write_fmt(format_args!("{} = {}; ", name.ident_str(), value))?; + write!(f, "{} = {}; ", name.ident_str(), value)?; } } |