From 5ae4b132599902b5de3d4f6f25cf6405d5d41a18 Mon Sep 17 00:00:00 2001 From: John Pennycook Date: Fri, 25 Oct 2024 09:07:15 +0100 Subject: [PATCH] Fix copy-paste error in transparent operators x -> t --- adoc/chapters/programming_interface.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adoc/chapters/programming_interface.adoc b/adoc/chapters/programming_interface.adoc index 03a1e71e..2339d327 100644 --- a/adoc/chapters/programming_interface.adoc +++ b/adoc/chapters/programming_interface.adoc @@ -21502,7 +21502,7 @@ template 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 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.