Skip to content

Commit 7e081a4

Browse files
committed
verbosity
1 parent f614a7e commit 7e081a4

File tree

1 file changed

+9
-9
lines changed
  • cabal-install-solver/src/Distribution/Solver/Modular

1 file changed

+9
-9
lines changed

cabal-install-solver/src/Distribution/Solver/Modular/Message.hs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -268,22 +268,22 @@ showOption qpn@(Q _pp pn) (POption i linkedTo) =
268268

269269
-- | Shows a mixed list of instances and versions in a human-friendly way,
270270
-- abbreviated.
271-
-- >>> showOptions foobarQPN [v0, v1]
271+
-- >>> showOptions verbose foobarQPN [v0, v1]
272272
-- "foo-bar; 0, 1"
273-
-- >>> showOptions foobarQPN [v0]
273+
-- >>> showOptions verbose foobarQPN [v0]
274274
-- "foo-bar-0"
275-
-- >>> showOptions foobarQPN [i0, i1]
275+
-- >>> showOptions verbose foobarQPN [i0, i1]
276276
-- "foo-bar; 0/installed-inplace, 1/installed-inplace"
277-
-- >>> showOptions foobarQPN [i0, v1]
277+
-- >>> showOptions verbose foobarQPN [i0, v1]
278278
-- "foo-bar; 0/installed-inplace, 1"
279-
-- >>> showOptions foobarQPN [v0, i1]
279+
-- >>> showOptions verbose foobarQPN [v0, i1]
280280
-- "foo-bar; 0, 1/installed-inplace"
281-
-- >>> showOptions foobarQPN []
281+
-- >>> showOptions verbose foobarQPN []
282282
-- "unexpected empty list of versions"
283-
-- >>> showOptions foobarQPN [k1, k2]
283+
-- >>> showOptions verbose foobarQPN [k1, k2]
284284
-- "foo-bar; foo-bar~>bazqux.foo-bar-1, foo-bar~>bazqux.foo-bar-2"
285-
-- >>> showOptions foobarQPN [v0, i1, k2]
286-
-- "foo-bar; 0, 1/installed-inplace, foo-bar~>bazqux.foo-bar-2 and earlier versions"
285+
-- >>> showOptions verbose foobarQPN [v0, i1, k2]
286+
-- "foo-bar; 0, 1/installed-inplace, foo-bar~>bazqux.foo-bar-2"
287287
showOptions :: Verbosity -> QPN -> [POption] -> String
288288
showOptions _ _ [] = "unexpected empty list of versions"
289289
showOptions _ q [x] = showOption q x

0 commit comments

Comments
 (0)