Skip to content

Commit 3a332e1

Browse files
Fix math import (#20)
* Fix math import * Add changelog entry
1 parent 3214d4c commit 3a332e1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ New features:
1212
Bugfixes:
1313

1414
Other improvements:
15+
- Update `Math` import to use `Data.Number` (#20 by @JordanMartinez)
1516

1617
## [v3.0.0](https://github.com/purescript-web/purescript-web-file/releases/tag/v3.0.0) - 2021-02-26
1718

src/Web/File/Blob.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module Web.File.Blob
1616
import Data.Int (toNumber)
1717
import Data.Maybe (Maybe(..))
1818
import Data.MediaType (MediaType(..))
19-
import Math (round)
19+
import Data.Number (round)
2020
import Prelude ((==), (>>>))
2121
import Unsafe.Coerce (unsafeCoerce)
2222

0 commit comments

Comments
 (0)