From 3fcdbc114ac25682de48efd7711f75ef83868cee Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 4 Apr 2000 15:22:58 +0000 Subject: [PATCH] [project @ 2000-04-04 15:22:58 by simonmar] a few corrections. --- ghc/docs/users_guide/vs_haskell.sgml | 46 +++++++++++----------------------- 1 file changed, 15 insertions(+), 31 deletions(-) diff --git a/ghc/docs/users_guide/vs_haskell.sgml b/ghc/docs/users_guide/vs_haskell.sgml index 2b6bb34..9dc29d9 100644 --- a/ghc/docs/users_guide/vs_haskell.sgml +++ b/ghc/docs/users_guide/vs_haskell.sgml @@ -42,15 +42,6 @@ option don't mix very well (see ). -Very long literal lists: - - -These may tickle a “yacc stack overflow” error in the parser. -(It depends on the Yacc used to build your parser.) - - - - Single quotes in module names: @@ -68,17 +59,7 @@ It might work, but it's just begging for trouble. - - - -Derived instances for records: - - -Hmmm. - - - - +None known. @@ -95,9 +76,9 @@ Hmmm. Several modules internal to GHC are visible in the standard namespace. -All of these modules begin with Prel, so the rule is: don't use any -modules beginning with Prel in your program, or you will be -comprehensively screwed. +All of these modules begin with Prel, so the rule +is: don't use any modules beginning with Prel in +your program, or you will be comprehensively screwed. @@ -117,17 +98,20 @@ comprehensively screwed. Unchecked arithmetic: -Arguably not an infelicity, but… Bear in mind that -operations on Int, Float, and Double numbers are -unchecked for overflow, underflow, and other sad occurrences. -(note, however that some architectures trap floating-point overflow -and loss-of-precision and report a floating-point -exception)floating-point exceptions. +Arguably not an infelicity, but… Bear in +mind that operations on Int, +Float, and Double numbers are +unchecked for overflow, underflow, and other sad +occurrences. (note, however that some architectures trap +floating-point overflow and loss-of-precision and report a +floating-point exception, probably terminating the +program)floating-point +exceptions. -Use Integer, Rational, etc., numeric types if this stuff -keeps you awake at night. +Use Integer, Rational, etc., +numeric types if this stuff keeps you awake at night. -- 1.7.10.4