From 0443af52acf43abaa0a42e828337ab576914713e Mon Sep 17 00:00:00 2001 From: witer33 <34513257+witer33@users.noreply.github.com> Date: Wed, 18 Dec 2024 17:58:30 +0100 Subject: [PATCH] docs: fixed description of `sign` in the embedded docs (#3338) --- src/expression/embeddedDocs/function/arithmetic/sign.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/expression/embeddedDocs/function/arithmetic/sign.js b/src/expression/embeddedDocs/function/arithmetic/sign.js index 6b7d730735..e194c2fa56 100644 --- a/src/expression/embeddedDocs/function/arithmetic/sign.js +++ b/src/expression/embeddedDocs/function/arithmetic/sign.js @@ -5,7 +5,7 @@ export const signDocs = { 'sign(x)' ], description: - 'Compute the sign of a value. The sign of a value x is 1 when x>1, -1 when x<0, and 0 when x=0.', + 'Compute the sign of a value. The sign of a value x is 1 when x>0, -1 when x<0, and 0 when x=0.', examples: [ 'sign(3.5)', 'sign(-4.2)',