diff options
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"; |