Skip to content

Commit

Permalink
test optional param jsdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
dangowans committed May 28, 2024
1 parent 4307655 commit a034e05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export function getPaperSize(
* - North American paper sizes in "in".
* - ISO paper sizes in "mm".
* @param paperType Paper type.
* @param paperSizeUnit Optional parameter to return size values in specific unit ("mm" or "in").
* @param [paperSizeUnit] Optional parameter to return size values in specific unit ("mm" or "in").
* @returns The portrait paper specifications.
*/
export function getPaperSize(
Expand Down Expand Up @@ -87,7 +87,7 @@ export function getLandscapePaperSize(
* - North American paper sizes in "in".
* - ISO paper sizes in "mm".
* @param paperType Paper type.
* @param paperSizeUnit Optional parameter to return size values in specific unit ("mm" or "in").
* @param [paperSizeUnit] Optional parameter to return size values in specific unit ("mm" or "in").
* @returns The landscape paper specifications.
*/
export function getLandscapePaperSize(
Expand Down Expand Up @@ -137,7 +137,7 @@ export function getPaperSizeInMillimetres(
): undefined

/**
* Retrieves the portarit paper dimensions in millimetres.
* Retrieves the portrait paper dimensions in millimetres.
* @param paperType Paper type.
* @returns The portrait paper specifications in millimetres.
*/
Expand Down

0 comments on commit a034e05

Please sign in to comment.