Skip to content

Commit 6761b0f

Browse files
committed
Merge pull request #47 from garyb/updates
Update dependency, fix warning
2 parents ce50702 + bc8fa10 commit 6761b0f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"package.json"
2424
],
2525
"dependencies": {
26-
"purescript-aff": "^0.12.0",
26+
"purescript-aff": "^0.13.0",
2727
"purescript-arraybuffer-types": "^0.2.0",
2828
"purescript-dom": "^0.2.0",
2929
"purescript-foreign": "^0.7.0",

src/Network/HTTP/Affjax.purs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -231,12 +231,12 @@ type AjaxRequest =
231231
}
232232

233233
foreign import _ajax
234-
:: forall e a. Fn5 (String -> String -> ResponseHeader)
235-
AjaxRequest
236-
(XMLHttpRequest -> Canceler (ajax :: AJAX | e))
237-
(Error -> Eff (ajax :: AJAX | e) Unit)
238-
(AffjaxResponse Foreign -> Eff (ajax :: AJAX | e) Unit)
239-
(Eff (ajax :: AJAX | e) (Canceler (ajax :: AJAX | e)))
234+
:: forall e. Fn5 (String -> String -> ResponseHeader)
235+
AjaxRequest
236+
(XMLHttpRequest -> Canceler (ajax :: AJAX | e))
237+
(Error -> Eff (ajax :: AJAX | e) Unit)
238+
(AffjaxResponse Foreign -> Eff (ajax :: AJAX | e) Unit)
239+
(Eff (ajax :: AJAX | e) (Canceler (ajax :: AJAX | e)))
240240

241241
cancelAjax :: forall e. XMLHttpRequest -> Canceler (ajax :: AJAX | e)
242242
cancelAjax xhr = Canceler \err -> makeAff (\eb cb -> runFn4 _cancelAjax xhr err eb cb)

0 commit comments

Comments
 (0)