File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ execPath = mkEff \_ -> process.execPath
94
94
95
95
-- | Change the current working directory of the process. If the current
96
96
-- | directory could not be changed, an exception will be thrown.
97
- foreign import chdir :: forall eff . String -> Eff (err :: EXCEPTION , process :: PROCESS | eff ) Unit
97
+ foreign import chdir :: forall eff . String -> Eff (exception :: EXCEPTION , process :: PROCESS | eff ) Unit
98
98
99
99
-- | Get the current working directory of the process.
100
100
cwd :: forall eff . Eff (process :: PROCESS | eff ) String
@@ -129,12 +129,12 @@ stdin = process.stdin
129
129
130
130
-- | The standard output stream. Note that this stream cannot be closed; calling
131
131
-- | `end` will result in an exception being thrown.
132
- stdout :: forall eff . Writable () (console :: CONSOLE , err :: EXCEPTION | eff )
132
+ stdout :: forall eff . Writable () (console :: CONSOLE , exception :: EXCEPTION | eff )
133
133
stdout = process.stdout
134
134
135
135
-- | The standard error stream. Note that this stream cannot be closed; calling
136
136
-- | `end` will result in an exception being thrown.
137
- stderr :: forall eff . Writable () (console :: CONSOLE , err :: EXCEPTION | eff )
137
+ stderr :: forall eff . Writable () (console :: CONSOLE , exception :: EXCEPTION | eff )
138
138
stderr = process.stderr
139
139
140
140
-- | Check whether the standard output stream appears to be attached to a TTY.
You can’t perform that action at this time.
0 commit comments