From 666ae24816541e80e3cf9f5d4d73dcce7c4481de Mon Sep 17 00:00:00 2001 From: jcalabro Date: Tue, 13 Jun 2023 16:37:26 -0400 Subject: [PATCH] Clarify @sin, @cos, @tan use radians --- doc/langref.html.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/langref.html.in b/doc/langref.html.in index ae02ef5705..b6ea23aa81 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -9273,7 +9273,7 @@ fn doTheTest() !void { {#header_open|@sin#}
{#syntax#}@sin(value: anytype) @TypeOf(value){#endsyntax#}

- Sine trigonometric function on a floating point number. Uses a dedicated hardware instruction + Sine trigonometric function on a floating point number in radians. Uses a dedicated hardware instruction when available.

@@ -9284,7 +9284,7 @@ fn doTheTest() !void { {#header_open|@cos#}

{#syntax#}@cos(value: anytype) @TypeOf(value){#endsyntax#}

- Cosine trigonometric function on a floating point number. Uses a dedicated hardware instruction + Cosine trigonometric function on a floating point number in radians. Uses a dedicated hardware instruction when available.

@@ -9295,7 +9295,7 @@ fn doTheTest() !void { {#header_open|@tan#}

{#syntax#}@tan(value: anytype) @TypeOf(value){#endsyntax#}

- Tangent trigonometric function on a floating point number. + Tangent trigonometric function on a floating point number in radians. Uses a dedicated hardware instruction when available.