summaryrefslogtreecommitdiff
path: root/cli/js/lib.deno.ns.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/lib.deno.ns.d.ts')
-rw-r--r--cli/js/lib.deno.ns.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/lib.deno.ns.d.ts b/cli/js/lib.deno.ns.d.ts
index 33d89190c..4a7609920 100644
--- a/cli/js/lib.deno.ns.d.ts
+++ b/cli/js/lib.deno.ns.d.ts
@@ -950,7 +950,7 @@ declare namespace Deno {
*
* For a full description, see [chmod](#chmod)
*
- * NOTE: This API currently has no effect on Windows
+ * NOTE: This API currently throws on Windows
*
* Requires `allow-write` permission. */
export function chmodSync(path: string, mode: number): void;
@@ -978,7 +978,7 @@ declare namespace Deno {
* | 1 | execute only |
* | 0 | no permission |
*
- * NOTE: This API currently has no effect on Windows
+ * NOTE: This API currently throws on Windows
*
* Requires `allow-write` permission. */
export function chmod(path: string, mode: number): Promise<void>;