Skip to content

Commit

Permalink
Merge pull request #513 from gmlueck/gmlueck/vec-editorial
Browse files Browse the repository at this point in the history
Fix an editorial mistake in "vec"
  • Loading branch information
gmlueck authored Dec 7, 2023
2 parents 299ac1c + 96383e3 commit 85ce930
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adoc/chapters/programming_interface.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17568,7 +17568,7 @@ Where [code]#OP# is: [code]#==#, [code]#!=#, [code]#<#, [code]#>#, [code]#+<=+#,
a@
[source]
----
vec& operator~(const vec& v)
vec operator~(const vec& v)
----
a@ Available only when: [code]#DataT != float && DataT != double && DataT != half#.

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

*Overloads (1) - (3):*

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

0 comments on commit 85ce930

Please sign in to comment.