Skip to content

Commit e671cb1

Browse files
committed
Remove since from NubList
1 parent 92c3e02 commit e671cb1

File tree

1 file changed

+0
-6
lines changed
  • cabal-install/src/Distribution/Client/Utils

1 file changed

+0
-6
lines changed

cabal-install/src/Distribution/Client/Utils/Parsec.hs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,6 @@ advance n z@(Zipper xs ys)
117117
(y : ys') -> advance (n - 1) $ Zipper (y : xs) ys'
118118

119119
-- | Like 'List', but for 'NubList'.
120-
--
121-
-- @since 3.2.0.0
122120
newtype NubList' sep b a = NubList' {_getNubList :: NubList a}
123121

124122
-- | 'alaNubList' and 'alaNubList'' are simply 'NubList'' constructor, with additional phantom
@@ -132,14 +130,10 @@ newtype NubList' sep b a = NubList' {_getNubList :: NubList a}
132130
--
133131
-- >>> unpack' (alaNubList' FSep Token) <$> eitherParsec "foo bar foo"
134132
-- Right (toNubList ["bar","foo"])
135-
--
136-
-- @since 3.2.0.0
137133
alaNubList :: sep -> NubList a -> NubList' sep (Identity a) a
138134
alaNubList _ = NubList'
139135

140136
-- | More general version of 'alaNubList'.
141-
--
142-
-- @since 3.2.0.0
143137
alaNubList' :: sep -> (a -> b) -> NubList a -> NubList' sep b a
144138
alaNubList' _ _ = NubList'
145139

0 commit comments

Comments
 (0)