Skip to content

Commit 65cfe95

Browse files
committed
Bump dependencies, fix unused variable warnings
1 parent 8c6c08e commit 65cfe95

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
"purescript-lists": "^0.7.0",
2626
"purescript-random": "^0.2.0",
2727
"purescript-strings": "^0.7.0",
28-
"purescript-transformers": "^0.7.1"
28+
"purescript-transformers": "^0.8.1"
2929
}
3030
}

src/Test/QuickCheck.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,9 @@ instance showResult :: Show Result where
106106
(<?>) false msg = Failed msg
107107

108108
-- | Self-documenting equality assertion
109-
(===) :: forall a b. (Eq a, Show a) => a -> a -> Result
109+
(===) :: forall a. (Eq a, Show a) => a -> a -> Result
110110
(===) a b = a == b <?> show a ++ " /= " ++ show b
111111

112112
-- | Self-documenting inequality assertion
113-
(/==) :: forall a b. (Eq a, Show a) => a -> a -> Result
113+
(/==) :: forall a. (Eq a, Show a) => a -> a -> Result
114114
(/==) a b = a /= b <?> show a ++ " == " ++ show b

src/Test/QuickCheck/Gen.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ evalGen :: forall a. Gen a -> GenState -> a
161161
evalGen = evalState
162162

163163
-- | Sample a random generator
164-
sample :: forall r a. Seed -> Size -> Gen a -> Array a
164+
sample :: forall a. Seed -> Size -> Gen a -> Array a
165165
sample seed sz g = evalGen (vectorOf sz g) { newSeed: seed, size: sz }
166166

167167
-- | Sample a random generator, using a randomly generated seed

0 commit comments

Comments
 (0)