Incorrect check for sqrt.

This commit is contained in:
Christoffer Lerno
2022-12-04 01:13:47 +01:00
parent 7647378e7c
commit 927ad2001f

View File

@@ -234,7 +234,7 @@ macro sinh(x) = (exp(x) - exp(-x)) / 2.0;
macro sqr(x) = x * x;
/**
* @require values::is_floatlike(x) `The input must be a floating point value or float vector`
* @require values::@is_floatlike(x) `The input must be a floating point value or float vector`
**/
macro sqrt(x) = $$sqrt(x);