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)',