diff options
author | qti3e <me@qti3e.com> | 2018-09-12 23:46:42 +0430 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-12 15:16:42 -0400 |
commit | 41c70b154f4dd9adf6df875c653bcf8701511ff0 (patch) | |
tree | bddea2fdb2478aab9de7e2a3b092b9295e9b1570 /js/rename.ts | |
parent | cb6c78c6d2dbd7298f27d7a0c3ffaa7ca255dca4 (diff) |
Add support for fetch() headers (#727)
Diffstat (limited to 'js/rename.ts')
-rw-r--r-- | js/rename.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/rename.ts b/js/rename.ts index 241e27490..5917912f5 100644 --- a/js/rename.ts +++ b/js/rename.ts @@ -4,8 +4,8 @@ import { flatbuffers } from "flatbuffers"; import * as dispatch from "./dispatch"; /** - * Synchronously renames (moves) oldpath to newpath. If newpath already exists - * and is not a directory, Rename replaces it. OS-specific restrictions may + * Synchronously renames (moves) oldpath to newpath. If newpath already exists + * and is not a directory, Rename replaces it. OS-specific restrictions may * apply when oldpath and newpath are in different directories. * * import { renameSync } from "deno"; @@ -16,8 +16,8 @@ export function renameSync(oldpath: string, newpath: string): void { } /** - * Renames (moves) oldpath to newpath. If newpath already exists - * and is not a directory, Rename replaces it. OS-specific restrictions may + * Renames (moves) oldpath to newpath. If newpath already exists + * and is not a directory, Rename replaces it. OS-specific restrictions may * apply when oldpath and newpath are in different directories. * * import { rename } from "deno"; |