We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ec2415 commit c797ba1Copy full SHA for c797ba1
CHANGELOG.md
@@ -11,6 +11,7 @@ New features:
11
Bugfixes:
12
13
Other improvements:
14
+- Fix warnings revealed by v0.14.1 PS release (#44 by @JordanMartinez)
15
16
## [v7.0.0](https://github.com/purescript-node/purescript-node-buffer/releases/tag/v7.0.0) - 2021-02-26
17
src/Node/Buffer/Immutable.purs
@@ -42,7 +42,7 @@ instance ordBuffer :: Ord ImmutableBuffer where
42
case compareImpl a b of
43
x | x < 0 -> LT
44
x | x > 0 -> GT
45
- otherwise -> EQ
+ _ -> EQ
46
47
foreign import compareImpl :: ImmutableBuffer -> ImmutableBuffer -> Int
48
0 commit comments