From a41c41f61bba4c48a16e2fd5a13efce25abc43c3 Mon Sep 17 00:00:00 2001 From: Kazuki Ota Date: Thu, 1 Jun 2023 01:41:47 +0900 Subject: [PATCH] fix jsdoc. --- src/minipack.ts | 2 +- src/time.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/minipack.ts b/src/minipack.ts index 9282676..75109bc 100644 --- a/src/minipack.ts +++ b/src/minipack.ts @@ -4,7 +4,7 @@ const sizeName = 1; const sizeBody = 4; /** -* Simple filename/binary pair that make up file. +* Simple filename and binary pair that make up file. */ export type FileInit = [string, Uint8Array]; diff --git a/src/time.ts b/src/time.ts index 4b8a5a0..4786ddb 100644 --- a/src/time.ts +++ b/src/time.ts @@ -1,6 +1,6 @@ /** * Return UNIX time in seconds. -* If no argument, will be calculate at current time. +* If no argument will be calculate at current time. * @example * ```ts * const time = unixtimeEncode(); @@ -13,7 +13,7 @@ export function unixtimeEncode(date?:Date):number{ /** * Returns `Date` from UNIX time. -* Note that in seconds, not milliseconds. +* Note that in seconds not milliseconds. * @example * ```ts * const time = unixtimeEncode();