We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d510702 commit 2c74812Copy full SHA for 2c74812
1 file changed
src/Control/Monad/Aff.purs
@@ -19,7 +19,7 @@ module Control.Monad.Aff
19
, delay
20
, never
21
, finally
22
- , invulnerable
+ , invincible
23
, killFiber
24
, joinFiber
25
, cancelWith
@@ -262,8 +262,8 @@ finally ∷ ∀ eff a. Aff eff Unit → Aff eff a → Aff eff a
262
finally fin a = bracket (pure unit) (const fin) (const a)
263
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
+invincible ∷ ∀ eff a. Aff eff a → Aff eff a
+invincible a = bracket a (const (pure unit)) pure
267
268
-- | Attaches a custom `Canceler` to an action. If the computation is canceled,
269
-- | then the custom `Canceler` will be run afterwards.
0 commit comments