From 1a18d06a57ef359e8c07b5dd7fddf0aaa9c36691 Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Sun, 23 Jun 2024 17:53:49 -0500 Subject: [PATCH] math: Fix copy-and-paste error in error message --- src/builtins/math.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtins/math.rs b/src/builtins/math.rs index 7a662f741..fc8802fa5 100644 --- a/src/builtins/math.rs +++ b/src/builtins/math.rs @@ -68,7 +68,7 @@ fn parse_cmd_opts( let scale = fish_wcstoi(optarg).unwrap_or(-1); if scale < 0 || scale > 15 { streams.err.append(wgettext_fmt!( - "%ls: %ls: invalid base value\n", + "%ls: %ls: invalid scale\n", cmd, optarg ));