aboutsummaryrefslogtreecommitdiff
path: root/docs/guide
diff options
context:
space:
mode:
authorMatt Mayer <[email protected]>2022-10-31 19:09:10 +0700
committerGitHub <[email protected]>2022-10-31 12:09:10 +0000
commit4204a6ae925a4e0c761ece10ad21222dac7a9e7e (patch)
tree6e8501381dc171a7100321ae24a5521d581cdba3 /docs/guide
parent284fdcfa2c6fe11b1aa7cd1f0da8ac00c85ce7ba (diff)
downloadfaker-4204a6ae925a4e0c761ece10ad21222dac7a9e7e.tar.xz
faker-4204a6ae925a4e0c761ece10ad21222dac7a9e7e.zip
docs: fix findname in usage docs (#1504)
Diffstat (limited to 'docs/guide')
-rw-r--r--docs/guide/usage.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/guide/usage.md b/docs/guide/usage.md
index fca9315d..57ee4565 100644
--- a/docs/guide/usage.md
+++ b/docs/guide/usage.md
@@ -43,7 +43,7 @@ Using the browser is great for experimenting 👍. However, due to all of the st
```js
import { faker } from 'https://cdn.skypack.dev/@faker-js/faker';
-const randomName = faker.person.findName(); // Willie Bahringer
+const randomName = faker.person.fullName(); // Willie Bahringer
const randomEmail = faker.internet.email(); // [email protected]
```