[commit: ghc] master: TH: Tweak Haddock language (89b6674)

git at git.haskell.org git at git.haskell.org
Sun Apr 17 14:10:48 UTC 2016


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/89b66742b770311255a441f7fe641b9e212d87aa/ghc

>---------------------------------------------------------------

commit 89b66742b770311255a441f7fe641b9e212d87aa
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Sun Apr 17 12:58:24 2016 +0200

    TH: Tweak Haddock language


>---------------------------------------------------------------

89b66742b770311255a441f7fe641b9e212d87aa
 libraries/template-haskell/Language/Haskell/TH/Syntax.hs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libraries/template-haskell/Language/Haskell/TH/Syntax.hs b/libraries/template-haskell/Language/Haskell/TH/Syntax.hs
index c8d9d75..8022f94 100644
--- a/libraries/template-haskell/Language/Haskell/TH/Syntax.hs
+++ b/libraries/template-haskell/Language/Haskell/TH/Syntax.hs
@@ -1550,13 +1550,13 @@ data Dec
   | DefaultSigD Name Type         -- ^ @{ default size :: Data a => a -> Int }@
   deriving( Show, Eq, Ord, Data, Typeable, Generic )
 
--- | Properties for overlapping instances.
+-- | Varieties of allowed instance overlap.
 data Overlap = Overlappable   -- ^ May be overlapped by more specific instances
              | Overlapping    -- ^ May overlap a more general instance
              | Overlaps       -- ^ Both 'Overlapping' and 'Overlappable'
              | Incoherent     -- ^ Both 'Overlappable' and 'Overlappable', and
                               -- pick an arbitrary one if multiple choices are
-                              -- avaialble.
+                              -- available.
   deriving( Show, Eq, Ord, Data, Typeable, Generic )
 
 -- | Common elements of 'OpenTypeFamilyD' and 'ClosedTypeFamilyD'.



More information about the ghc-commits mailing list