Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix an editorial mistake in "vec" #513

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions adoc/chapters/programming_interface.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17570,7 +17570,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 @@ -22255,7 +22255,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