From 1d86c4537ea9e693e497407972b23d47bab53969 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 12 Aug 2022 17:30:17 +0300 Subject: refactor(tvix/eval): use `write!` macro instead of `f.write_fmt` 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 Reviewed-by: grfn --- tvix/eval/src/value/mod.rs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'tvix/eval/src/value/mod.rs') diff --git a/tvix/eval/src/value/mod.rs b/tvix/eval/src/value/mod.rs index e9fdc40ac5..3889a79835 100644 --- a/tvix/eval/src/value/mod.rs +++ b/tvix/eval/src/value/mod.rs @@ -104,17 +104,16 @@ impl Display for Value { Value::Null => f.write_str("null"), Value::Bool(true) => f.write_str("true"), Value::Bool(false) => f.write_str("false"), - Value::Integer(num) => f.write_fmt(format_args!("{}", num)), + Value::Integer(num) => write!(f, "{}", num), Value::String(s) => s.fmt(f), Value::Attrs(attrs) => attrs.fmt(f), Value::List(list) => list.fmt(f), // Nix prints floats with a maximum precision of 5 digits // only. - Value::Float(num) => f.write_fmt(format_args!( - "{}", - format!("{:.5}", num).trim_end_matches(['.', '0']) - )), + Value::Float(num) => { + write!(f, "{}", format!("{:.5}", num).trim_end_matches(['.', '0'])) + } // internal types Value::AttrPath(_) => f.write_str("internal[attrpath]"), -- cgit 1.4.1