previous 2nd level typos

1991-10-28 Thread haskell-request
Original-Via: uk.ac.st-and.cs; Mon, 28 Oct 91 15:31:11 GMT Oh * !! Tony

More typos

1991-10-28 Thread haskell-request
Original-Via: uk.ac.ic.doc; Mon, 28 Oct 91 15:16:11 GMT Tony Davie <[EMAIL PROTECTED]> wrote: >The functions toUpper and toLower in the standard prelude (p 80) have >initial definitions which should read: > >toUpper c | isLower c = chr (ord c - (ord 'A' - ord 'a')) > >and > >toLower c | isUpper c

More typos

1991-10-28 Thread haskell-request
Original-Via: uk.ac.st-and.cs; Mon, 28 Oct 91 14:54:31 GMT The functions toUpper and toLower in the standard prelude (p 80) have initial definitions which should read: toUpper c | isLower c = chr (ord c - (ord 'A' - ord 'a')) and toLower c | isUpper c = chr (ord c - (ord 'a' - ord 'A')) Tony