diff options
| -rw-r--r-- | .travis.yml | 3 | ||||
| -rw-r--r-- | haddock-api/src/Haddock/Backends/LaTeX.hs | 10 | 
2 files changed, 8 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 681399b9..35ee528d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -83,6 +83,9 @@ script:    # cabal check    - cabal check +  # Build documentation +  - cabal new-haddock -w ${HC} all +    # Build without installed constraints for packages in global-db    - if $UNCONSTRAINED; then rm -f cabal.project.local; echo cabal new-build -w ${HC} --disable-tests --disable-benchmarks all; else echo "Not building without installed constraints"; fi diff --git a/haddock-api/src/Haddock/Backends/LaTeX.hs b/haddock-api/src/Haddock/Backends/LaTeX.hs index 4e0e6eba..613c6deb 100644 --- a/haddock-api/src/Haddock/Backends/LaTeX.hs +++ b/haddock-api/src/Haddock/Backends/LaTeX.hs @@ -243,8 +243,8 @@ ppDocGroup lev doc = sec lev <> braces doc  -- | Given a declaration, extract out the names being declared  declNames :: LHsDecl DocNameI -          -> ( LaTeX           -- ^ to print before each name in an export list -             , [DocName]       -- ^ names being declared +          -> ( LaTeX           --   to print before each name in an export list +             , [DocName]       --   names being declared               )  declNames (L _ decl) = case decl of    TyClD _ d  -> (empty, [tcdName d]) @@ -444,9 +444,9 @@ ppLPatSig doc docnames ty unicode  -- arguments as needed.  ppTypeOrFunSig :: HsType DocNameI                 -> DocForDecl DocName  -- ^ documentation -               -> ( LaTeX             -- ^ first-line (no-argument docs only) -                  , LaTeX             -- ^ first-line (argument docs only) -                  , LaTeX             -- ^ type prefix (argument docs only) +               -> ( LaTeX             --   first-line (no-argument docs only) +                  , LaTeX             --   first-line (argument docs only) +                  , LaTeX             --   type prefix (argument docs only)                    )                 -> Bool                -- ^ unicode                 -> LaTeX  | 
