Skip to content

Commit

Permalink
fix: change examples in docs(replace "undefined")
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmitry-duboyski committed Jan 1, 2023
1 parent 08d78fd commit b929ad5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Example of an exported data(one user):
gender: 'male',
nickname: 'strong9173452',
emailAddress: 'alfie.macey5713177@yahoo.com',
password: 'Alfieundefined5009314'
password: 'Alfie$5009314'
}
```

Expand All @@ -48,7 +48,7 @@ console.log(getfakeUser())
gender: 'male',
nickname: 'strong9173452',
emailAddress: 'alfie.macey5713177@yahoo.com',
password: 'Alfieundefined5009314'
password: 'Alfie$5009314'
}
```
### `count`
Expand All @@ -71,23 +71,23 @@ console.log(getfakeUser({count:3}))
gender: 'male',
nickname: 'fast746322',
emailAddress: 'brian.bargeman6495334@aol.com',
password: 'Brianundefined602241'
password: 'Brian#602241'
},
{
firstName: 'Terence',
lastName: 'Birch',
gender: 'male',
nickname: 'sweetie4996015',
emailAddress: 'terence.birch9865994@gmail.com',
password: 'Terenceundefined2515067'
password: 'Terence@2515067'
},
{
firstName: 'Cheryl',
lastName: 'Samuels',
gender: 'female',
nickname: 'fast9219228',
emailAddress: 'cheryl.samuels7309146@yahoo.com',
password: 'Cherylundefined7425514'
password: 'Cheryl$7425514'
}
]
```
Expand All @@ -110,15 +110,15 @@ console.log(getfakeUser({count:2, gender: 'female'}))
gender: 'female',
nickname: 'hot2586687',
emailAddress: 'whitney.gustman9004751@gmail.com',
password: 'Whitneyundefined5540391'
password: 'Whitney)5540391'
},
{
firstName: 'Carol',
lastName: 'Sykes',
gender: 'female',
nickname: 'lazy3778840',
emailAddress: 'carol.sykes9959462@gmail.com',
password: 'Carolundefined7241265'
password: 'Carol$7241265'
}
]
```
Expand Down

0 comments on commit b929ad5

Please sign in to comment.