fix code bug in jsdocs (#2048)

This commit is contained in:
迷渡 2019-04-04 17:34:00 +08:00 committed by Ryan Dahl
parent 0e7311e171
commit 4520e5812e

View file

@ -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<ReadResult> {