summaryrefslogtreecommitdiff
path: root/std/fs/empty_dir.ts
diff options
context:
space:
mode:
authorAkash Vishwakarma <akash.vishwakarma@milliman.com>2020-05-17 00:06:13 +0530
committerGitHub <noreply@github.com>2020-05-16 20:36:13 +0200
commit6257684da62bbefb5b9fbeac01ef7c72598c85ca (patch)
tree0aefb439263789f33e07175e93c85c578e6be953 /std/fs/empty_dir.ts
parent6405675448917f36252cde52d8504a64b73db9c8 (diff)
Fix spelling: "--alow-write" => "--allow-write" (#5486)
Diffstat (limited to 'std/fs/empty_dir.ts')
-rw-r--r--std/fs/empty_dir.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/std/fs/empty_dir.ts b/std/fs/empty_dir.ts
index 8c3083cee..de52890a3 100644
--- a/std/fs/empty_dir.ts
+++ b/std/fs/empty_dir.ts
@@ -6,7 +6,7 @@ const { readDir, readDirSync, mkdir, mkdirSync, remove, removeSync } = Deno;
* Deletes directory contents if the directory is not empty.
* If the directory does not exist, it is created.
* The directory itself is not deleted.
- * Requires the `--allow-read` and `--alow-write` flag.
+ * Requires the `--allow-read` and `--allow-write` flag.
*/
export async function emptyDir(dir: string): Promise<void> {
try {
@@ -37,7 +37,7 @@ export async function emptyDir(dir: string): Promise<void> {
* Deletes directory contents if the directory is not empty.
* If the directory does not exist, it is created.
* The directory itself is not deleted.
- * Requires the `--allow-read` and `--alow-write` flag.
+ * Requires the `--allow-read` and `--allow-write` flag.
*/
export function emptyDirSync(dir: string): void {
try {