authorgravatar for jamesrcalabro@gmail.comjcalabro <jamesrcalabro@gmail.com> 2023-06-13 16:37:26-04:00
committergravatar for git@vexu.euVeikka Tuominen <git@vexu.eu> 2023-06-14 06:04:52-07:00
log666ae24816541e80e3cf9f5d4d73dcce7c4481de
treed68ae49f69064c37f194326e52da926ff4ef2623
parent38fc826a5a82bbe11a893be11d3cc1439c477ee8

Clarify @sin, @cos, @tan use radians


1 files changed, 3 insertions(+), 3 deletions(-)

doc/langref.html.in+3-3
......@@ -9273,7 +9273,7 @@ fn doTheTest() !void {
92739273 {#header_open|@sin#}
92749274 <pre>{#syntax#}@sin(value: anytype) @TypeOf(value){#endsyntax#}</pre>
92759275 <p>
9276 Sine trigonometric function on a floating point number. Uses a dedicated hardware instruction
9276 Sine trigonometric function on a floating point number in radians. Uses a dedicated hardware instruction
92779277 when available.
92789278 </p>
92799279 <p>
......@@ -9284,7 +9284,7 @@ fn doTheTest() !void {
92849284 {#header_open|@cos#}
92859285 <pre>{#syntax#}@cos(value: anytype) @TypeOf(value){#endsyntax#}</pre>
92869286 <p>
9287 Cosine trigonometric function on a floating point number. Uses a dedicated hardware instruction
9287 Cosine trigonometric function on a floating point number in radians. Uses a dedicated hardware instruction
92889288 when available.
92899289 </p>
92909290 <p>
......@@ -9295,7 +9295,7 @@ fn doTheTest() !void {
92959295 {#header_open|@tan#}
92969296 <pre>{#syntax#}@tan(value: anytype) @TypeOf(value){#endsyntax#}</pre>
92979297 <p>
9298 Tangent trigonometric function on a floating point number.
9298 Tangent trigonometric function on a floating point number in radians.
92999299 Uses a dedicated hardware instruction when available.
93009300 </p>
93019301 <p>