aboutsummaryrefslogtreecommitdiff
path: root/html-test
diff options
context:
space:
mode:
Diffstat (limited to 'html-test')
-rw-r--r--html-test/ref/Bug313.html12
-rw-r--r--html-test/ref/Bug574.html2
-rw-r--r--html-test/ref/ConstructorArgs.html2
-rw-r--r--html-test/ref/Nesting.html8
-rw-r--r--html-test/ref/Test.html4
-rw-r--r--html-test/src/Bug308.hs2
-rw-r--r--html-test/src/Bug745.hs2
-rw-r--r--html-test/src/BundledPatterns2.hs3
-rw-r--r--html-test/src/ConstructorArgs.hs2
-rw-r--r--html-test/src/DefaultAssociatedTypes.hs2
-rw-r--r--html-test/src/GadtConstructorArgs.hs2
-rw-r--r--html-test/src/Operators.hs2
-rw-r--r--html-test/src/QuasiQuote.hs2
13 files changed, 22 insertions, 23 deletions
diff --git a/html-test/ref/Bug313.html b/html-test/ref/Bug313.html
index 9bb1e176..44a970b7 100644
--- a/html-test/ref/Bug313.html
+++ b/html-test/ref/Bug313.html
@@ -91,15 +91,15 @@
><p
>Some text.</p
><ol
- ><li
+ ><li value="1"
>Item 1</li
- ><li
+ ><li value="2"
><p
>Item 2</p
><pre
>Some code</pre
></li
- ><li
+ ><li value="3"
>Item 3</li
></ol
><p
@@ -117,15 +117,15 @@
><p
>Some text.</p
><ol
- ><li
+ ><li value="1"
>Item 1</li
- ><li
+ ><li value="2"
><p
>Item 2</p
><pre
>Some code</pre
></li
- ><li
+ ><li value="3"
>Item 3</li
></ol
><p
diff --git a/html-test/ref/Bug574.html b/html-test/ref/Bug574.html
index 89f71a01..8264bfc0 100644
--- a/html-test/ref/Bug574.html
+++ b/html-test/ref/Bug574.html
@@ -84,7 +84,7 @@
></p
><div class="doc"
><p
- >Somthing with a spliced type</p
+ >Something with a spliced type</p
></div
></div
></div
diff --git a/html-test/ref/ConstructorArgs.html b/html-test/ref/ConstructorArgs.html
index 9441fd03..ca9bfb8d 100644
--- a/html-test/ref/ConstructorArgs.html
+++ b/html-test/ref/ConstructorArgs.html
@@ -718,7 +718,7 @@
></p
><div class="doc"
><p
- >Not bunded and no argument docs</p
+ >Not bundled and no argument docs</p
></div
></div
></div
diff --git a/html-test/ref/Nesting.html b/html-test/ref/Nesting.html
index 59111338..5af30a4b 100644
--- a/html-test/ref/Nesting.html
+++ b/html-test/ref/Nesting.html
@@ -108,7 +108,7 @@
><p
>easily go back</p
><ol
- ><li
+ ><li value="1"
>some indentation</li
></ol
></li
@@ -118,7 +118,7 @@
></li
></ul
><ol
- ><li
+ ><li value="1"
><pre
>back at the top</pre
></li
@@ -285,11 +285,11 @@ with more of the indented list content.</p
><p
>Even more content on a new line.</p
><ol
- ><li
+ ><li value="1"
><p
>Different type of list</p
><ol
- ><li
+ ><li value="2"
>Deeper</li
></ol
><pre class="screen"
diff --git a/html-test/ref/Test.html b/html-test/ref/Test.html
index 10540c93..a4fdb391 100644
--- a/html-test/ref/Test.html
+++ b/html-test/ref/Test.html
@@ -1884,9 +1884,9 @@ using double quotes: <a href="#"
>This is the next item (different kind of bullet)</li
></ul
><ol
- ><li
+ ><li value="1"
>This is an ordered list</li
- ><li
+ ><li value="2"
>This is the next item (different kind of bullet)</li
></ol
><dl
diff --git a/html-test/src/Bug308.hs b/html-test/src/Bug308.hs
index 93ecffac..250a0622 100644
--- a/html-test/src/Bug308.hs
+++ b/html-test/src/Bug308.hs
@@ -1,6 +1,6 @@
{-# LANGUAGE Haskell2010 #-}
-- From 2.14.x onwards we were forgetting to swallow ‘#’ as a special
--- character resulting in broken anchors if they accured
+-- character resulting in broken anchors if they occurred
-- mid-paragraph. Here we check that anchors get generated as
-- expected.
module Bug308 where
diff --git a/html-test/src/Bug745.hs b/html-test/src/Bug745.hs
index 295ac59d..01602bb3 100644
--- a/html-test/src/Bug745.hs
+++ b/html-test/src/Bug745.hs
@@ -4,6 +4,6 @@
module Bug574 where
-- See https://github.com/haskell/haddock/issues/574
--- | Somthing with a spliced type
+-- | Something with a spliced type
foo :: Int -> $(let i = [t| Int |] in [t| $i -> $i |])
foo x y = x + y
diff --git a/html-test/src/BundledPatterns2.hs b/html-test/src/BundledPatterns2.hs
index c4123535..6f1b61f5 100644
--- a/html-test/src/BundledPatterns2.hs
+++ b/html-test/src/BundledPatterns2.hs
@@ -1,6 +1,5 @@
{-# LANGUAGE Haskell2010 #-}
-{-# LANGUAGE DataKinds, GADTs, KindSignatures, PatternSynonyms, TypeOperators,
- ViewPatterns #-}
+{-# LANGUAGE DataKinds, GADTs, KindSignatures, PatternSynonyms #-}
module BundledPatterns2 (Vec((:>), Empty), RTree(..)) where
import GHC.TypeLits
diff --git a/html-test/src/ConstructorArgs.hs b/html-test/src/ConstructorArgs.hs
index c3b848c3..40697d13 100644
--- a/html-test/src/ConstructorArgs.hs
+++ b/html-test/src/ConstructorArgs.hs
@@ -50,7 +50,7 @@ pattern Bo :: Int -- ^ an 'Int'
-> Boo -- ^ a 'Boo' pattern
pattern Bo x y = Foo x y
--- | Not bunded and no argument docs
+-- | Not bundled and no argument docs
pattern Bo' :: Int -> String -> Boo
pattern Bo' x y = Foo x y
diff --git a/html-test/src/DefaultAssociatedTypes.hs b/html-test/src/DefaultAssociatedTypes.hs
index 340742d3..68a587ef 100644
--- a/html-test/src/DefaultAssociatedTypes.hs
+++ b/html-test/src/DefaultAssociatedTypes.hs
@@ -1,5 +1,5 @@
{-# LANGUAGE Haskell2010 #-}
-{-# LANGUAGE DefaultSignatures, TypeFamilies #-}
+{-# LANGUAGE TypeFamilies #-}
module DefaultAssociatedTypes where
diff --git a/html-test/src/GadtConstructorArgs.hs b/html-test/src/GadtConstructorArgs.hs
index 6d742bd7..50ff93cc 100644
--- a/html-test/src/GadtConstructorArgs.hs
+++ b/html-test/src/GadtConstructorArgs.hs
@@ -1,5 +1,5 @@
{-# LANGUAGE Haskell2010 #-}
-{-# LANGUAGE GADTs, PatternSynonyms #-}
+{-# LANGUAGE GADTs #-}
module GadtConstructorArgs (Boo(..)) where
diff --git a/html-test/src/Operators.hs b/html-test/src/Operators.hs
index c303c8bd..1d938ba6 100644
--- a/html-test/src/Operators.hs
+++ b/html-test/src/Operators.hs
@@ -1,5 +1,5 @@
{-# LANGUAGE Haskell2010 #-}
-{-# LANGUAGE PatternSynonyms, TypeOperators, TypeFamilies, MultiParamTypeClasses, GADTs #-}
+{-# LANGUAGE PatternSynonyms, TypeOperators, TypeFamilies, GADTs #-}
{-# LANGUAGE FunctionalDependencies #-}
-- | Test operators with or without fixity declarations
diff --git a/html-test/src/QuasiQuote.hs b/html-test/src/QuasiQuote.hs
index fe900eb8..6cc928cd 100644
--- a/html-test/src/QuasiQuote.hs
+++ b/html-test/src/QuasiQuote.hs
@@ -1,5 +1,5 @@
{-# LANGUAGE Haskell2010 #-}
-{-# LANGUAGE TemplateHaskell, QuasiQuotes #-}
+{-# LANGUAGE QuasiQuotes #-}
-- example taken from the GHC documentation
module QuasiQuote where