Skip to content
This repository was archived by the owner on Oct 4, 2020. It is now read-only.

Commit e8e0db5

Browse files
matthewleongaryb
authored andcommitted
redundant parens
1 parent 72fb00b commit e8e0db5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Test/Data/Map.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ instance showInstruction :: (Show k, Show v) => Show (Instruction k v) where
4949
show (Delete k) = "Delete (" <> show k <> ")"
5050

5151
instance arbInstruction :: (Arbitrary k, Arbitrary v) => Arbitrary (Instruction k v) where
52-
arbitrary = oneOf (Insert <$> arbitrary <*> arbitrary) [(Delete <$> arbitrary)]
52+
arbitrary = oneOf (Insert <$> arbitrary <*> arbitrary) [Delete <$> arbitrary]
5353

5454
runInstructions :: forall k v. Ord k => List (Instruction k v) -> M.Map k v -> M.Map k v
5555
runInstructions instrs t0 = foldl step t0 instrs

0 commit comments

Comments
 (0)