Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cabal-install-parsers/src/Cabal/Package.hs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import qualified Distribution.PackageDescription.Parsec as C

import Cabal.Parse

-- | High level convinience function to read package definitons, @.cabal@ files.
-- | High level convenience function to read package definitions, @.cabal@ files.
--
-- May throw 'IOException' when file doesn't exist, and 'ParseError'
-- on parse error.
Expand Down
2 changes: 1 addition & 1 deletion cabal-install-parsers/src/Cabal/Project.hs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ data Project uri opt pkg = Project
{ prjPackages :: [pkg] -- ^ packages field
, prjOptPackages :: [opt] -- ^ optional packages
, prjUriPackages :: [uri] -- ^ URI packages, filled in by 'resolveProject'
, prjConstraints :: [String] -- ^ constaints, parsed as 'String's.
, prjConstraints :: [String] -- ^ constraints, parsed as 'String's.
, prjAllowNewer :: [String] -- ^ allow-newer, parsed as 'String's.
, prjReorderGoals :: Bool
, prjMaxBackjumps :: Maybe Int
Expand Down
2 changes: 1 addition & 1 deletion cabal-install-parsers/test/Index.hs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import Cabal.Index
main :: IO ()
main = defaultMain $ testGroup "Cabal.Index"
[ testGroup "SHA256"
[ testCase "Base16.encode . getSHA256 . unsafeMkSHA256 rountrip" $ do
[ testCase "Base16.encode . getSHA256 . unsafeMkSHA256 roundtrip" $ do
let s :: IsString s => s
s = "a6f5eddcff9526c786a1b77bdfade54b42f67c066b379bbc4b55ffb291e6c7d6"

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Continous Integration with Haskell
Continuous Integration with Haskell
==================================

Contents:
Expand Down
2 changes: 1 addition & 1 deletion fixtures/servant-client/servant-client.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: servant-client
version: 0.11
synopsis: automatical derivation of querying functions for servant webservices
synopsis: automatically derivation of querying functions for servant webservices
description:
This library lets you derive automatically Haskell functions that
let you query each endpoint of a <http://hackage.haskell.org/package/servant servant> webservice.
Expand Down
2 changes: 1 addition & 1 deletion src/HaskellCI/Config/Grammar.hs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ configGrammar = Config
<*> optionalFieldDef "jobs-selection" (field @"cfgTestedWith") defaultConfig
^^^ metahelp "uniform|any" "Jobs selection across packages"
<*> rangeField "enabled" (field @"cfgEnabledJobs") defaultConfig
^^^ metahelp "RANGE" "Restrict jobs selection futher from per package tested-with"
^^^ metahelp "RANGE" "Restrict jobs selection further from per package tested-with"
<*> optionalFieldDef "copy-fields" (field @"cfgCopyFields") defaultConfig
^^^ metahelp "none|some|all" "Copy ? fields from cabal.project fields"
<*> monoidalFieldAla "local-ghc-options" (C.alaList' C.NoCommaFSep C.Token') (field @"cfgLocalGhcOptions")
Expand Down
2 changes: 1 addition & 1 deletion src/HaskellCI/Sh.hs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ sh = sh'
, 2046
, 2210
{-
SC1102: Shells disambiguate $(( differently or not at all. For $(command substitution), add space after $( . For $((arithmetics)), fix parsing errors.
SC1102: Shells disambiguate $(( differently or not at all. For $(command substitution), add space after $( . For $((arithmetic)), fix parsing errors.
SC2046: Quote this to prevent word splitting.
SC2210: This is a file redirection. Was it supposed to be a comparison or fd operation?
-}
Expand Down