Skip to content

Commit 3ba3ef1

Browse files
committed
Remove unused type variables
1 parent bfff756 commit 3ba3ef1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Node/Buffer.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,15 +118,15 @@ foreign import readImpl :: String -> Offset -> Buffer -> Number
118118
-- |
119119
-- Reads a section of a buffer as a string with the specified encoding.
120120
--
121-
readString :: forall e. Encoding -> Offset -> Offset -> Buffer -> String
121+
readString :: Encoding -> Offset -> Offset -> Buffer -> String
122122
readString = readStringImpl <<< show
123123

124124
foreign import readStringImpl :: String -> Offset -> Offset -> Buffer -> String
125125

126126
-- |
127127
-- Reads the buffer as a string with the specified encoding.
128128
--
129-
toString :: forall e. Encoding -> Buffer -> String
129+
toString :: Encoding -> Buffer -> String
130130
toString = toStringImpl <<< show
131131

132132
foreign import toStringImpl :: String -> Buffer -> String

0 commit comments

Comments
 (0)