From 13340302852fd22a6462a0a847af358ea8fb8007 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 5 Feb 2018 15:11:06 -0800 Subject: [PATCH] Added 'square root of %' alias. --- core/math.nom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/math.nom b/core/math.nom index da8d931..31be658 100644 --- a/core/math.nom +++ b/core/math.nom @@ -17,7 +17,7 @@ compile [e] to {expr:"math.exp(1)"} # Functions: compile [% as a number] to {expr:"tonumber(\(% as lua expr))"} compile [absolute value %, | % |, abs %] to {expr:"math.abs(\(% as lua expr))"} -compile [square root %, √%, sqrt %] to {expr:"math.sqrt(\(% as lua expr))"} +compile [square root %, square root of %, √%, sqrt %] to {expr:"math.sqrt(\(% as lua expr))"} compile [sine %, sin %] to {expr:"math.sin(\(% as lua expr))"} compile [cosine %, cos %] to {expr:"math.cos(\(% as lua expr))"} compile [tangent %, tan %] to {expr:"math.tan(\(% as lua expr))"}