diff options
Diffstat (limited to 'io/bufio.ts')
-rw-r--r-- | io/bufio.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/io/bufio.ts b/io/bufio.ts index 05e6b0a0c..33cddea2b 100644 --- a/io/bufio.ts +++ b/io/bufio.ts @@ -211,7 +211,7 @@ export class BufReader implements Reader { * delim. * For simple uses, a Scanner may be more convenient. */ - async readString(delim: string): Promise<string> { + async readString(_delim: string): Promise<string> { throw new Error("Not implemented"); } |