Skip to content

Commit

Permalink
Clarify @sin, @cos, @tan use radians
Browse files Browse the repository at this point in the history
  • Loading branch information
jcalabro authored and wooster0 committed Jun 14, 2023
1 parent 78f2272 commit 4ca224e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/langref.html.in
Original file line number Diff line number Diff line change
Expand Up @@ -9273,7 +9273,7 @@ fn doTheTest() !void {
{#header_open|@sin#}
<pre>{#syntax#}@sin(value: anytype) @TypeOf(value){#endsyntax#}</pre>
<p>
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.
</p>
<p>
Expand All @@ -9284,7 +9284,7 @@ fn doTheTest() !void {
{#header_open|@cos#}
<pre>{#syntax#}@cos(value: anytype) @TypeOf(value){#endsyntax#}</pre>
<p>
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.
</p>
<p>
Expand All @@ -9295,7 +9295,7 @@ fn doTheTest() !void {
{#header_open|@tan#}
<pre>{#syntax#}@tan(value: anytype) @TypeOf(value){#endsyntax#}</pre>
<p>
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.
</p>
<p>
Expand Down

0 comments on commit 4ca224e

Please sign in to comment.