@@ -88,7 +88,7 @@ type ChildProcessRec =
8888 , pid :: Pid
8989 , connected :: Boolean
9090 , kill :: String -> Unit
91- , send :: forall r . Fn2 { | r } Handle Boolean
91+ , send :: forall r . Fn2 { | r } Handle Boolean
9292 , disconnect :: Effect Unit
9393 }
9494
@@ -110,8 +110,8 @@ stderr = unsafeFromNullable (missingStream "stderr") <<< _.stderr <<< runChildPr
110110missingStream :: String -> String
111111missingStream str =
112112 " Node.ChildProcess: stream not available: " <> str <> " \n This is probably "
113- <> " because you passed something other than Pipe to the stdio option when "
114- <> " you spawned it."
113+ <> " because you passed something other than Pipe to the stdio option when "
114+ <> " you spawned it."
115115
116116foreign import unsafeFromNullable :: forall a . String -> Nullable a -> a
117117
@@ -491,7 +491,7 @@ data StdIOBehaviour
491491
492492-- | Create pipes for each of the three standard IO streams.
493493pipe :: Array (Maybe StdIOBehaviour )
494- pipe = map Just [Pipe , Pipe , Pipe ]
494+ pipe = map Just [ Pipe , Pipe , Pipe ]
495495
496496-- | Share `stdin` with `stdin`, `stdout` with `stdout`,
497497-- | and `stderr` with `stderr`.
@@ -506,8 +506,7 @@ foreign import process :: forall props. { | props }
506506
507507-- | Ignore all streams.
508508ignore :: Array (Maybe StdIOBehaviour )
509- ignore = map Just [Ignore , Ignore , Ignore ]
510-
509+ ignore = map Just [ Ignore , Ignore , Ignore ]
511510
512511-- Helpers
513512
0 commit comments