Skip to content

Commit

Permalink
Fix copy-paste error in transparent operators
Browse files Browse the repository at this point in the history
x -> t
Pennycook committed Oct 25, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent f4eb1a8 commit 5ae4b13
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
@@ -21502,7 +21502,7 @@ template <class T, class U> constexpr auto operator()(T&& t, U&& u) const
-> /* see below */;
----

_Returns_: The smaller value, or [code]#x# if the arguments are equivalent.
_Returns_: The smaller value, or [code]#t# if the arguments are equivalent.
The return type is deduced.

==== [code]#maximum# class template
@@ -21531,7 +21531,7 @@ template <class T, class U> constexpr auto operator()(T&& t, U&& u) const
-> /* see below */;
----

_Returns_: The larger value, or [code]#x# if the arguments are equivalent.
_Returns_: The larger value, or [code]#t# if the arguments are equivalent.
The return type is deduced.


0 comments on commit 5ae4b13

Please sign in to comment.