From 2f46186f2b043ffc30ff0664f48390e94b3e6e97 Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Sun, 23 Jun 2024 18:01:31 -0500 Subject: [PATCH] Fix formatting --- src/builtins/math.rs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/builtins/math.rs b/src/builtins/math.rs index fc8802fa5..5bbc103e5 100644 --- a/src/builtins/math.rs +++ b/src/builtins/math.rs @@ -67,11 +67,9 @@ fn parse_cmd_opts( } else { let scale = fish_wcstoi(optarg).unwrap_or(-1); if scale < 0 || scale > 15 { - streams.err.append(wgettext_fmt!( - "%ls: %ls: invalid scale\n", - cmd, - optarg - )); + streams + .err + .append(wgettext_fmt!("%ls: %ls: invalid scale\n", cmd, optarg)); return Err(STATUS_INVALID_ARGS); } // We know the value is in the range [0, 15]