Skip to content

Commit

Permalink
Remove duplicated examples
Browse files Browse the repository at this point in the history
  • Loading branch information
pladreyt committed Jan 4, 2023
1 parent 5a65fd1 commit 6ece169
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/modules/string/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,6 @@ export class StringModule {
* faker.string.binary({ length: { min: 5, max: 10 } }) // '0b11101011'
* faker.string.binary({ prefix: '0b' }) // '0b1'
* faker.string.binary({ length: 10, prefix: 'bin_' }) // 'bin_1101011011'
* faker.string.binary({ prefix: '' }) // '1'
* faker.string.binary({ length: 10, prefix: '0b' }) // '0b1101011011'
*
* @since 8.0.0
*/
Expand Down Expand Up @@ -297,8 +295,6 @@ export class StringModule {
* faker.string.octal({ length: { min: 5, max: 10 } }) // '0o15263214'
* faker.string.octal({ prefix: '0o' }) // '0o7'
* faker.string.octal({ length: 10, prefix: 'oct_' }) // 'oct_1542153414'
* faker.string.octal({ prefix: '' }) // '2'
* faker.string.octal({ length: 10, prefix: '0o' }) // '0o1526216210'
*
* @since 8.0.0
*/
Expand Down

0 comments on commit 6ece169

Please sign in to comment.