Commit 02ace4569e

data-man <datamanrb@gmail.com>
2020-01-08 17:57:20
Correct @mulAdd's doc
1 parent 38ce7f6
Changed files (1)
doc/langref.html.in
@@ -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#}