From: Ian Lynagh Date: Sat, 17 Mar 2007 00:40:03 +0000 (+0000) Subject: Fix typo "lazy y x" -> "lazy y" X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=d753d69a65e5acd860f626a6d2f6b86b75289066 Fix typo "lazy y x" -> "lazy y" --- 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}.