diff options
author | 迷渡 <justjavac@gmail.com> | 2020-08-11 11:22:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-10 23:22:10 -0400 |
commit | dad74c3706f5454288ccead85cbc28430d635850 (patch) | |
tree | 5ca433cda60554793c28666ba2e424386fef79e6 /cli/dts/lib.deno.unstable.d.ts | |
parent | da98f9e3a174a304b0a83391fa61fcfdba0fc668 (diff) |
remove unnecessary await in docs (#7012)
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 8a3e872df..4bb449116 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -48,7 +48,7 @@ declare namespace Deno { * Gets the size of the console as columns/rows. * * ```ts - * const { columns, rows } = await Deno.consoleSize(Deno.stdout.rid); + * const { columns, rows } = Deno.consoleSize(Deno.stdout.rid); * ``` */ export function consoleSize( |