File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -281,24 +281,24 @@ module Control.Monad.Aff
281281 " " " :: forall e a. ((Error -> Eff e Unit) -> (a -> Eff e Unit) -> Eff e (Canceler e)) -> Aff e a
282282
283283 foreign import _pure " " "
284- function _pure(canceler , v) {
284+ function _pure(nonCanceler , v) {
285285 return function(success, error) {
286286 try {
287287 success(v);
288288 } catch (e) {
289289 error(e);
290290 }
291291
292- return canceler ;
292+ return nonCanceler ;
293293 }
294294 }" " " :: forall e a. Fn2 (Canceler e ) a (Aff e a )
295295
296296 foreign import _throwError " " "
297- function _throwError(canceler , e) {
297+ function _throwError(nonCanceler , e) {
298298 return function(success, error) {
299299 error(e);
300300
301- return canceler ;
301+ return nonCanceler ;
302302 };
303303 }" " " :: forall e a. Fn2 (Canceler e ) Error (Aff e a )
304304
@@ -400,15 +400,15 @@ module Control.Monad.Aff
400400 }" " " :: forall e a. Fn3 (Error -> Eff e Unit ) (a -> Eff e Unit ) (Aff e a ) (Eff e Unit )
401401
402402 foreign import _liftEff " " "
403- function _liftEff(canceler , e) {
403+ function _liftEff(nonCanceler , e) {
404404 return function(success, error) {
405405 try {
406406 success(e());
407407 } catch (e) {
408408 error(e);
409409 }
410410
411- return canceler ;
411+ return nonCanceler ;
412412 };
413413 }" " " :: forall e a. Fn2 (Canceler e ) (Eff e a ) (Aff e a )
414414
You can’t perform that action at this time.
0 commit comments