From bddc9d6c5275771b183b15609e701b0ed05f1d5e Mon Sep 17 00:00:00 2001 From: premek <1145361+premek@users.noreply.github.com> Date: Fri, 28 Oct 2022 22:57:09 +0200 Subject: [PATCH] Spreadsheet: Fix maxIf and minIf name in documentation --- Base/res/js/Spreadsheet/runtime.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Base/res/js/Spreadsheet/runtime.js b/Base/res/js/Spreadsheet/runtime.js index c1040d4bd1..527622732e 100644 --- a/Base/res/js/Spreadsheet/runtime.js +++ b/Base/res/js/Spreadsheet/runtime.js @@ -907,7 +907,7 @@ max.__documentation = JSON.stringify({ }); maxIf.__documentation = JSON.stringify({ - name: "max", + name: "maxIf", argc: 1, argnames: ["condition", "numbers or cell names"], doc: "Calculates the largest of all numbers or cell values which evaluate to true when passed to `condition`", @@ -929,7 +929,7 @@ min.__documentation = JSON.stringify({ }); minIf.__documentation = JSON.stringify({ - name: "min", + name: "minIf", argc: 1, argnames: ["condition", "numbers or cell names"], doc: "Calculates the smallest of all numbers or cell values which evaluate to true when passed to `condition`",