Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"package.json"
],
"dependencies": {
"purescript-globals": "master",
"purescript-numbers": "master",
"purescript-math": "master",
"purescript-maybe": "master",
"purescript-prelude": "master"
Expand Down
2 changes: 1 addition & 1 deletion src/Data/Int.purs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import Prelude

import Data.Int.Bits ((.&.))
import Data.Maybe (Maybe(..), fromMaybe)
import Global (isFinite)
import Data.Number (isFinite)

import Math as Math

Expand Down
2 changes: 1 addition & 1 deletion test/Test/Data/Int.purs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Data.Int (binary, ceil, even, floor, fromNumber, fromString, fromStringAs
import Data.Maybe (Maybe(..), fromJust)
import Effect (Effect)
import Effect.Console (log)
import Global (nan, infinity)
import Data.Number (nan, infinity)
import Partial.Unsafe (unsafePartial)
import Test.Assert (assert)

Expand Down