From: jim Date: Sun, 8 Feb 2015 21:00:24 +0000 (-0500) Subject: s/pair/triple/ X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=commitdiff_plain;h=84ec0499bf09cef81baebac94ac31c72c56f4193 s/pair/triple/ --- diff --git a/exercises/assignment2.mdwn b/exercises/assignment2.mdwn index f8467f7a..1fa69788 100644 --- a/exercises/assignment2.mdwn +++ b/exercises/assignment2.mdwn @@ -96,7 +96,7 @@ Now we can write: (t snd_of_three) ; will evaluate to 20 If you're puzzled by having the triple to the left and the function that -operates on it come second, think about why it's being done this way: the pair +operates on it come second, think about why it's being done this way: the triple is a package that takes a function for operating on its elements *as an argument*, and returns *the result of* operating on its elements with that function. In other words, the triple is a higher-order function.