math.functions-docs: fix wording for abs and absq

Those functions are not specific to complex numbers.
char-rename
Alexander Iljin 2016-07-28 21:02:14 +03:00 committed by John Benediktsson
parent 1cec145e46
commit 79964e4487
1 changed files with 3 additions and 2 deletions

View File

@ -253,11 +253,12 @@ HELP: [-1,1]?
HELP: abs
{ $values { "x" number } { "y" "a non-negative real number" } }
{ $description "Computes the absolute value of a complex number." } ;
{ $description "Computes the absolute value of a number." }
{ $see-also absq } ;
HELP: absq
{ $values { "x" number } { "y" "a non-negative real number" } }
{ $description "Computes the squared absolute value of a complex number. This is marginally more efficient than " { $link abs } "." } ;
{ $description "Computes the squared absolute value of a number. For complex numbers this is marginally more efficient than " { $link abs } "." } ;
HELP: ^
{ $values { "x" number } { "y" number } { "z" number } }