diff options
Diffstat (limited to 'js')
-rw-r--r-- | js/truncate.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/truncate.ts b/js/truncate.ts index 7b6e2f8e9..05bee7168 100644 --- a/js/truncate.ts +++ b/js/truncate.ts @@ -5,7 +5,7 @@ import * as dispatch from "./dispatch"; /** * Truncates or extends the specified file synchronously, - * updating the size of this file to become size. + * updating the size of this file to become size. * * import { truncateSync } from "deno"; * @@ -17,7 +17,7 @@ export function truncateSync(name: string, len?: number): void { /** * Truncates or extends the specified file, - * updating the size of this file to become size. + * updating the size of this file to become size. * * import { truncate } from "deno"; * |