From 927ad2001f2f6036e77304e81a7a18686db55236 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Sun, 4 Dec 2022 01:13:47 +0100 Subject: [PATCH] Incorrect check for sqrt. --- lib/std/math.c3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/math.c3 b/lib/std/math.c3 index e25341ca8..26abe431e 100644 --- a/lib/std/math.c3 +++ b/lib/std/math.c3 @@ -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);