summaryrefslogtreecommitdiff
path: root/cli/dts/lib.deno.ns.d.ts
diff options
context:
space:
mode:
authorjosephrocca <1167575+josephrocca@users.noreply.github.com>2020-08-04 20:16:04 +1000
committerGitHub <noreply@github.com>2020-08-04 12:16:04 +0200
commit8bacd710dbf8976c41d230b9f65c466b9fb3a488 (patch)
treebf1e555fb432825aead450455fa26af1497c5303 /cli/dts/lib.deno.ns.d.ts
parentbda9f619728d2b795d5a449f5a4feb9a1e0ed14c (diff)
docs: Removed unnecessary `await` (#6951)
Diffstat (limited to 'cli/dts/lib.deno.ns.d.ts')
-rw-r--r--cli/dts/lib.deno.ns.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts
index 962179381..f551ea361 100644
--- a/cli/dts/lib.deno.ns.d.ts
+++ b/cli/dts/lib.deno.ns.d.ts
@@ -1565,7 +1565,7 @@ declare namespace Deno {
* else overwriting.
*
* ```ts
- * await Deno.writeTextFileSync("hello1.txt", "Hello world\n"); // overwrite "hello1.txt" or create it
+ * Deno.writeTextFileSync("hello1.txt", "Hello world\n"); // overwrite "hello1.txt" or create it
* ```
*
* Requires `allow-write` permission, and `allow-read` if `options.create` is `false`.