diff options
Diffstat (limited to 'std/io/writers.ts')
-rw-r--r-- | std/io/writers.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/io/writers.ts b/std/io/writers.ts index b9a6a5e70..8e085c84b 100644 --- a/std/io/writers.ts +++ b/std/io/writers.ts @@ -1,6 +1,6 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. type Writer = Deno.Writer; -import { decode, encode } from "../strings/mod.ts"; +import { decode, encode } from "../encoding/utf8.ts"; /** Writer utility for buffering string chunks */ export class StringWriter implements Writer { |