From 4520e5812e112dfb219f8eb6051ed8576141165a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BF=B7=E6=B8=A1?= Date: Thu, 4 Apr 2019 17:34:00 +0800 Subject: [PATCH] fix code bug in jsdocs (#2048) --- js/files.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/files.ts b/js/files.ts index 4c1292bd7c..0724565e47 100644 --- a/js/files.ts +++ b/js/files.ts @@ -87,7 +87,7 @@ function resRead(baseRes: null | msg.Base): ReadResult { * const file = Deno.openSync("/foo/bar.txt"); * const buf = new Uint8Array(100); * const { nread, eof } = Deno.readSync(file.rid, buf); - * const text = new TextDecoder.decode(buf); + * const text = new TextDecoder().decode(buf); * */ export function readSync(rid: number, p: Uint8Array): ReadResult { @@ -102,7 +102,7 @@ export function readSync(rid: number, p: Uint8Array): ReadResult { * const file = await Deno.open("/foo/bar.txt"); * const buf = new Uint8Array(100); * const { nread, eof } = await Deno.read(file.rid, buf); - * const text = new TextDecoder.decode(buf); + * const text = new TextDecoder().decode(buf); * })(); */ export async function read(rid: number, p: Uint8Array): Promise {