From 6cd46fa3ef4b12f35a60f1a33c7f038c06b5fc71 Mon Sep 17 00:00:00 2001 From: dubiousjim Date: Mon, 2 Mar 2020 10:19:42 -0500 Subject: Cleanup comments and internal variables (#4205) --- cli/js/chmod.ts | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'cli/js/chmod.ts') diff --git a/cli/js/chmod.ts b/cli/js/chmod.ts index 22bd8c40e..5aa4ce7ea 100644 --- a/cli/js/chmod.ts +++ b/cli/js/chmod.ts @@ -1,19 +1,22 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { sendSync, sendAsync } from "./dispatch_json.ts"; -/** Changes the permission of a specific file/directory of specified path - * synchronously. +/** Synchronously changes the permission of a specific file/directory of + * specified path. Ignores the process's umask. * * Deno.chmodSync("/path/to/file", 0o666); - */ + * + * Requires `allow-write` permission. */ export function chmodSync(path: string, mode: number): void { sendSync("op_chmod", { path, mode }); } /** Changes the permission of a specific file/directory of specified path. + * Ignores the process's umask. * * await Deno.chmod("/path/to/file", 0o666); - */ + * + * Requires `allow-write` permission. */ export async function chmod(path: string, mode: number): Promise { await sendAsync("op_chmod", { path, mode }); } -- cgit v1.2.3