Skip to content

Commit 90c1273

Browse files
committed
Merge pull request #27 from dylex/master
Update for STArray move from Prelude to arrays
2 parents 9d9ee1b + 77f5aa0 commit 90c1273

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"angular": "1.2.26",
2929
"todomvc-common": "0.1.9",
3030
"purescript-strings": "0.4.1",
31-
"purescript-arrays": "0.2.1",
31+
"purescript-arrays": "0.2.2",
3232
"purescript-control": "0.2.1"
3333
}
3434
}

src/Angular/ST.purs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
module Angular.ST where
22

33
import Control.Monad.Eff
4-
import Control.Monad.ST (ST(), STArray())
4+
import Control.Monad.ST (ST())
5+
import Data.Array.ST (STArray())
56

67
foreign import readSTArray "function readSTArray(arr) {\
78
\ return function() {\

0 commit comments

Comments
 (0)