Correct @mulAdd's doc

This commit is contained in:
data-man 2020-01-08 21:57:20 +05:00 committed by Andrew Kelley
parent 38ce7f64e3
commit 02ace4569e

View File

@ -6828,9 +6828,12 @@ async fn func(y: *i32) void {
{#header_open|@mulAdd#}
<pre>{#syntax#}@mulAdd(comptime T: type, a: T, b: T, c: T) T{#endsyntax#}</pre>
<p>
Fused multiply add (for floats), similar to {#syntax#}(a * b) + c{#endsyntax#}, except
Fused multiply add, similar to {#syntax#}(a * b) + c{#endsyntax#}, except
only rounds once, and is thus more accurate.
</p>
<p>
Supports Floats and Vectors of floats.
</p>
{#header_close#}
{#header_open|@byteSwap#}