Skip to content

Commit 85ce930

Browse files
authored
Merge pull request #513 from gmlueck/gmlueck/vec-editorial
Fix an editorial mistake in "vec"
2 parents 299ac1c + 96383e3 commit 85ce930

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

adoc/chapters/programming_interface.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17568,7 +17568,7 @@ Where [code]#OP# is: [code]#==#, [code]#!=#, [code]#<#, [code]#>#, [code]#+<=+#,
1756817568
a@
1756917569
[source]
1757017570
----
17571-
vec& operator~(const vec& v)
17571+
vec operator~(const vec& v)
1757217572
----
1757317573
a@ Available only when: [code]#DataT != float && DataT != double && DataT != half#.
1757417574

@@ -22502,7 +22502,7 @@ template<typename NonScalar1, typename NonScalar2, typename NonScalar3> (4)
2250222502

2250322503
*Overloads (1) - (3):*
2250422504

22505-
_Effects_: Computes the approximate value of [code]#a * b + c#. Whether or how
22505+
_Effects:_ Computes the approximate value of [code]#a * b + c#. Whether or how
2250622506
the product of [code]#a * b# is rounded and how supernormal or subnormal
2250722507
intermediate products are handled is not defined. The [code]#mad# function is
2250822508
intended to be used where speed is preferred over accuracy.

0 commit comments

Comments
 (0)