File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ Write a chunk to a writable stream.
139139#### ` writeString `
140140
141141``` purescript
142- writeString :: forall r eff a . Writable r eff String -> Encoding -> String -> Eff eff Unit -> Eff eff Boolean
142+ writeString :: forall r eff. Writable r eff String -> Encoding -> String -> Eff eff Unit -> Eff eff Boolean
143143```
144144
145145Write a string in the specified encoding to a writable stream.
Original file line number Diff line number Diff line change @@ -87,10 +87,10 @@ foreign import pipe :: forall r w eff a. Readable w eff a -> Writable r eff a ->
8787-- | Write a chunk to a writable stream.
8888foreign import write :: forall r eff a . Writable r eff String -> a -> Eff eff Unit -> Eff eff Boolean
8989
90- foreign import writeStringImpl :: forall r eff a . Writable r eff String -> String -> String -> Eff eff Unit -> Eff eff Boolean
90+ foreign import writeStringImpl :: forall r eff . Writable r eff String -> String -> String -> Eff eff Unit -> Eff eff Boolean
9191
9292-- | Write a string in the specified encoding to a writable stream.
93- writeString :: forall r eff a . Writable r eff String -> Encoding -> String -> Eff eff Unit -> Eff eff Boolean
93+ writeString :: forall r eff . Writable r eff String -> Encoding -> String -> Eff eff Unit -> Eff eff Boolean
9494writeString w enc = writeStringImpl w (show enc)
9595
9696-- | Force buffering of writes.
@@ -106,4 +106,4 @@ setDefaultEncoding :: forall r eff. Writable r eff String -> Encoding -> Eff eff
106106setDefaultEncoding r enc = setDefaultEncodingImpl r (show enc)
107107
108108-- | End writing data to the stream.
109- foreign import end :: forall r eff a . Writable r eff a -> Eff eff Unit -> Eff eff Unit
109+ foreign import end :: forall r eff a . Writable r eff a -> Eff eff Unit -> Eff eff Unit
You can’t perform that action at this time.
0 commit comments