Spreadsheet: Fix maxIf and minIf name in documentation

This commit is contained in:
premek 2022-10-28 22:57:09 +02:00 committed by Ali Mohammad Pur
parent 5e2b41175c
commit bddc9d6c52

View file

@ -907,7 +907,7 @@ max.__documentation = JSON.stringify({
}); });
maxIf.__documentation = JSON.stringify({ maxIf.__documentation = JSON.stringify({
name: "max", name: "maxIf",
argc: 1, argc: 1,
argnames: ["condition", "numbers or cell names"], argnames: ["condition", "numbers or cell names"],
doc: "Calculates the largest of all numbers or cell values which evaluate to true when passed to `condition`", 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({ minIf.__documentation = JSON.stringify({
name: "min", name: "minIf",
argc: 1, argc: 1,
argnames: ["condition", "numbers or cell names"], argnames: ["condition", "numbers or cell names"],
doc: "Calculates the smallest of all numbers or cell values which evaluate to true when passed to `condition`", doc: "Calculates the smallest of all numbers or cell values which evaluate to true when passed to `condition`",