Skip to content

Commit

Permalink
docs(datatype): fix hexadecimal jsdoc (#1308)
Browse files Browse the repository at this point in the history
  • Loading branch information
ejcheng authored Aug 28, 2022
1 parent 379ba79 commit 948d107
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/datatype/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export class Datatype {
* faker.datatype.hexadecimal() // '0xB'
* faker.datatype.hexadecimal({ length: 10 }) // '0xaE13d044cB'
* faker.datatype.hexadecimal({ prefix: '0x' }) // '0xE'
* faker.datatype.hexadecimal({ case: 'lower' }) // 'f'
* faker.datatype.hexadecimal({ case: 'lower' }) // '0xf'
* faker.datatype.hexadecimal({ length: 10, prefix: '#' }) // '#f12a974eB1'
* faker.datatype.hexadecimal({ length: 10, case: 'upper' }) // '0xE3F38014FB'
* faker.datatype.hexadecimal({ prefix: '', case: 'lower' }) // 'd'
Expand Down

0 comments on commit 948d107

Please sign in to comment.