Skip to content

Commit c797ba1

Browse files
Fix warnings revealed by v0.14.1 PS release (#44)
* Fix warnings revealed by v0.14.1 PS release * Update changelog
1 parent 8ec2415 commit c797ba1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ New features:
1111
Bugfixes:
1212

1313
Other improvements:
14+
- Fix warnings revealed by v0.14.1 PS release (#44 by @JordanMartinez)
1415

1516
## [v7.0.0](https://github.com/purescript-node/purescript-node-buffer/releases/tag/v7.0.0) - 2021-02-26
1617

src/Node/Buffer/Immutable.purs

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ instance ordBuffer :: Ord ImmutableBuffer where
4242
case compareImpl a b of
4343
x | x < 0 -> LT
4444
x | x > 0 -> GT
45-
otherwise -> EQ
45+
_ -> EQ
4646

4747
foreign import compareImpl :: ImmutableBuffer -> ImmutableBuffer -> Int
4848

0 commit comments

Comments
 (0)