s/pair/triple/
[lambda.git] / exercises / assignment2.mdwn
index f8467f7..1fa6978 100644 (file)
@@ -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.