From d39c717b69bd17a5e48b4df2fea8edfdbdaf46a0 Mon Sep 17 00:00:00 2001 From: Matthias Felleisen Date: Wed, 23 Sep 2009 22:27:13 +0000 Subject: [PATCH] fixed argmax doc bug; please propagate svn: r16118 --- collects/lang/private/intermediate-funs.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/lang/private/intermediate-funs.ss b/collects/lang/private/intermediate-funs.ss index def9af7bf5..9c648e41e5 100644 --- a/collects/lang/private/intermediate-funs.ss +++ b/collects/lang/private/intermediate-funs.ss @@ -50,7 +50,7 @@ "to find the (first) element of the list that minimizes the output of the function") (argmax ((X -> real) (listof X) -> X) - "to find the (first) element of the list that minimizes the output of the function") + "to find the (first) element of the list that maximizes the output of the function") (memf ((X -> boolean) (listof X) -> (union false (listof X))) "to determine whether the first argument produces true for some value in the second argument")