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.
139
139
#### ` writeString `
140
140
141
141
``` 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
143
143
```
144
144
145
145
Write 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 ->
87
87
-- | Write a chunk to a writable stream.
88
88
foreign import write :: forall r eff a . Writable r eff String -> a -> Eff eff Unit -> Eff eff Boolean
89
89
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
91
91
92
92
-- | 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
94
94
writeString w enc = writeStringImpl w (show enc)
95
95
96
96
-- | Force buffering of writes.
@@ -106,4 +106,4 @@ setDefaultEncoding :: forall r eff. Writable r eff String -> Encoding -> Eff eff
106
106
setDefaultEncoding r enc = setDefaultEncodingImpl r (show enc)
107
107
108
108
-- | 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