Skip to content
Open
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
8 changes: 4 additions & 4 deletions cabal-install/src/Distribution/Client/TargetSelector.hs
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ import qualified Prelude (foldr1)

-- ------------------------------------------------------------

-- | A target selector is expression selecting a set of components (as targets
-- for a actions like @build@, @run@, @test@ etc). A target selector
-- | A target selector is an expression selecting a set of components (as targets
-- for actions like @build@, @run@, @test@ etc). A target selector
-- corresponds to the user syntax for referring to targets on the command line.
--
-- From the users point of view a target can be many things: packages, dirs,
Expand Down Expand Up @@ -1134,7 +1134,7 @@ syntaxForm2MetaAll =
[TargetStringFileStatus2 "" noFileStatus "all"]
render _ = []

-- | Syntax: all : filer
-- | Syntax: all : filter
--
-- > cabal build all:tests
syntaxForm2AllFilter :: Syntax
Expand All @@ -1148,7 +1148,7 @@ syntaxForm2AllFilter =
[TargetStringFileStatus2 "all" noFileStatus (dispF kfilter)]
render _ = []

-- | Syntax: package : filer
-- | Syntax: package : filter
--
-- > cabal build foo:tests
syntaxForm2PackageFilter :: [KnownPackage] -> Syntax
Expand Down
Loading