From 9f6b94823511e80b84d052ee571d8c839fc98e0c Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 12 Feb 2002 09:39:19 +0000 Subject: [PATCH] [project @ 2002-02-12 09:39:19 by simonmar] Merge rev. 1.61 of ghc/lib/std/PrelBase.lhs --- GHC/Base.lhs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/GHC/Base.lhs b/GHC/Base.lhs index b4961ae..d5fcfcd 100644 --- a/GHC/Base.lhs +++ b/GHC/Base.lhs @@ -1,7 +1,7 @@ % ----------------------------------------------------------------------------- -% $Id: Base.lhs,v 1.5 2002/02/05 17:32:26 simonmar Exp $ +% $Id: Base.lhs,v 1.6 2002/02/12 09:39:19 simonmar Exp $ % -% (c) The University of Glasgow, 1992-2000 +% (c) The University of Glasgow, 1992-2002 % \section[GHC.Base]{Module @GHC.Base@} @@ -599,8 +599,8 @@ instance CReturnable () -- Why, exactly? \begin{code} data Unit = Unit -data a :+: b = Inl a | Inr b -data a :*: b = a :*: b +data (:+:) a b = Inl a | Inr b +data (:*:) a b = a :*: b \end{code} -- 1.7.10.4