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();