Fix typo "lazy y x" -> "lazy y"
authorIan Lynagh <igloo@earth.li>
Sat, 17 Mar 2007 00:40:03 +0000 (00:40 +0000)
committerIan Lynagh <igloo@earth.li>
Sat, 17 Mar 2007 00:40:03 +0000 (00:40 +0000)
compiler/prelude/primops.txt.pp

index e8b85ab..16149d9 100644 (file)
@@ -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}.