Skip to content

Commit

Permalink
Refine documentation for readVnNumber function
Browse files Browse the repository at this point in the history
This commit adjusts the documentation of the 'readVnNumber' function for clearer understanding. Specifically, a dash was added to the explanation of the 'number' parameter to better distinguish the parameter from its description.
  • Loading branch information
hckhanh committed Feb 26, 2024
1 parent 657b163 commit 3839aec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hckhanh/vn-number",
"version": "1.1.5",
"version": "1.1.6",
"exports": "./src/index.ts",
"exclude": [
".github/",
Expand Down
2 changes: 1 addition & 1 deletion src/read/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import NumberReader from './NumberReader.ts'
* // output: mười chín triệu chín trăm chín mươi nghìn
* ```
*
* @param number The number to read. It can be string, number or bigint value
* @param number - The number to read. It can be string, number or bigint value
* @return The Vietnamese number in string.
*/
export function readVnNumber(number: string | number | bigint): string {
Expand Down

0 comments on commit 3839aec

Please sign in to comment.