From a3ca7df083c0b70b365cbb4b570683a6de89c29e Mon Sep 17 00:00:00 2001 From: "Jeroen F.J. Laros" Date: Fri, 22 Jul 2022 12:51:52 +0200 Subject: [PATCH] Updated the documentation of the trigonometry functions. All three functions have the following signature `double (*)(double)`. This is now reflected in the documentation. --- Language/Functions/Trigonometry/cos.adoc | 2 +- Language/Functions/Trigonometry/sin.adoc | 2 +- Language/Functions/Trigonometry/tan.adoc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Language/Functions/Trigonometry/cos.adoc b/Language/Functions/Trigonometry/cos.adoc index f9f9fdc1c..ec2980789 100644 --- a/Language/Functions/Trigonometry/cos.adoc +++ b/Language/Functions/Trigonometry/cos.adoc @@ -28,7 +28,7 @@ Calculates the cosine of an angle (in radians). The result will be between -1 an [float] === Parameters -`rad`: The angle in radians. Allowed data types: `float`. +`rad`: The angle in radians. Allowed data types: `double`. [float] diff --git a/Language/Functions/Trigonometry/sin.adoc b/Language/Functions/Trigonometry/sin.adoc index 0cc7fd95b..7d3df131a 100644 --- a/Language/Functions/Trigonometry/sin.adoc +++ b/Language/Functions/Trigonometry/sin.adoc @@ -28,7 +28,7 @@ Calculates the sine of an angle (in radians). The result will be between -1 and [float] === Parameters -`rad`: The angle in radians. Allowed data types: `float`. +`rad`: The angle in radians. Allowed data types: `double`. [float] diff --git a/Language/Functions/Trigonometry/tan.adoc b/Language/Functions/Trigonometry/tan.adoc index 193730123..fb32f9778 100644 --- a/Language/Functions/Trigonometry/tan.adoc +++ b/Language/Functions/Trigonometry/tan.adoc @@ -28,7 +28,7 @@ Calculates the tangent of an angle (in radians). The result will be between nega [float] === Parameters -`rad`: The angle in radians. Allowed data types: `float`. +`rad`: The angle in radians. Allowed data types: `double`. [float]