We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 78916a9 + e1733a0 commit ff768a9Copy full SHA for ff768a9
src/Effect/Aff.purs
@@ -241,7 +241,7 @@ runAff_ k aff = void $ runAff k aff
241
runSuspendedAff ∷ ∀ a. (Either Error a → Effect Unit) → Aff a → Effect (Fiber Unit)
242
runSuspendedAff k aff = launchSuspendedAff $ liftEffect <<< k =<< try aff
243
244
--- | Forks am `Aff` from within a parent `Aff` context, returning the `Fiber`.
+-- | Forks an `Aff` from within a parent `Aff` context, returning the `Fiber`.
245
forkAff ∷ ∀ a. Aff a → Aff (Fiber a)
246
forkAff = _fork true
247
0 commit comments