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
131
131
#### ` exit `
132
132
133
133
``` purescript
134
- exit :: forall eff. Int -> Eff (process :: PROCESS | eff) Unit
134
+ exit :: forall eff a . Int -> Eff (process :: PROCESS | eff) a
135
135
```
136
136
137
137
Cause 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)
115
115
-- | Cause the process to exit with the supplied integer code. An exit code
116
116
-- | of 0 is normally considered successful, and anything else is considered a
117
117
-- | 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
119
119
120
120
-- | The standard input stream. Note that this stream will never emit an `end`
121
121
-- | event, so any handlers attached via `onEnd` will never be called.
You can’t perform that action at this time.
0 commit comments