From d753d69a65e5acd860f626a6d2f6b86b75289066 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 17 Mar 2007 00:40:03 +0000 Subject: [PATCH] Fix typo "lazy y x" -> "lazy y" --- compiler/prelude/primops.txt.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/prelude/primops.txt.pp b/compiler/prelude/primops.txt.pp index e8b85ab..16149d9 100644 --- a/compiler/prelude/primops.txt.pp +++ b/compiler/prelude/primops.txt.pp @@ -1794,7 +1794,7 @@ pseudoop "lazy" {\tt par :: a -> b -> b} - {\tt par x y = case (par\# x) of \_ -> lazy y x} + {\tt par x y = case (par\# x) of \_ -> lazy y} If {\tt lazy} were not lazy, {\tt par} would look strict in {\tt y} which would defeat the whole purpose of {\tt par}. -- 1.7.10.4