Skip to content

Commit

Permalink
Merge pull request #54 from dojyorin/dev
Browse files Browse the repository at this point in the history
fix jsdoc.
  • Loading branch information
dojyorin authored May 31, 2023
2 parents 25ce31f + a41c41f commit aa135bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/minipack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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];

Expand Down
4 changes: 2 additions & 2 deletions src/time.ts
Original file line number Diff line number Diff line change
@@ -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();
Expand All @@ -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();
Expand Down

0 comments on commit aa135bb

Please sign in to comment.