File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ module Control.Monad.Aff
19
19
, delay
20
20
, never
21
21
, finally
22
- , invulnerable
22
+ , invincible
23
23
, killFiber
24
24
, joinFiber
25
25
, cancelWith
@@ -262,8 +262,8 @@ finally ∷ ∀ eff a. Aff eff Unit → Aff eff a → Aff eff a
262
262
finally fin a = bracket (pure unit) (const fin) (const a)
263
263
264
264
-- | Runs an effect such that it cannot be killed.
265
- invulnerable ∷ ∀ eff a . Aff eff a → Aff eff a
266
- invulnerable a = bracket a (const (pure unit)) pure
265
+ invincible ∷ ∀ eff a . Aff eff a → Aff eff a
266
+ invincible a = bracket a (const (pure unit)) pure
267
267
268
268
-- | Attaches a custom `Canceler` to an action. If the computation is canceled,
269
269
-- | then the custom `Canceler` will be run afterwards.
You can’t perform that action at this time.
0 commit comments