File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ platform :: Platform
131131#### ` exit `
132132
133133``` purescript
134- exit :: forall eff. Int -> Eff (process :: PROCESS | eff) Unit
134+ exit :: forall eff a . Int -> Eff (process :: PROCESS | eff) a
135135```
136136
137137Cause the process to exit with the supplied integer code. An exit code
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ platform = fromJust (Platform.fromString process.platform)
115115-- | Cause the process to exit with the supplied integer code. An exit code
116116-- | of 0 is normally considered successful, and anything else is considered a
117117-- | failure.
118- foreign import exit :: forall eff . Int -> Eff (process :: PROCESS | eff ) Unit
118+ foreign import exit :: forall eff a . Int -> Eff (process :: PROCESS | eff ) a
119119
120120-- | The standard input stream. Note that this stream will never emit an `end`
121121-- | event, so any handlers attached via `onEnd` will never be called.
You can’t perform that action at this time.
0 commit comments