aboutsummaryrefslogtreecommitdiff
path: root/docs/guide/usage.md
diff options
context:
space:
mode:
authorLacy Morrow <[email protected]>2023-10-24 03:07:27 -0400
committerGitHub <[email protected]>2023-10-24 09:07:27 +0200
commit79c0f25fd35048e8f6cdf1f375dda8f2f1efb14a (patch)
treefb36ed115d218fdafb5fdeb0f8797922d2d8cab6 /docs/guide/usage.md
parentc970ca01b580911731454dc2d5e5e791dfe26112 (diff)
downloadfaker-79c0f25fd35048e8f6cdf1f375dda8f2f1efb14a.tar.xz
faker-79c0f25fd35048e8f6cdf1f375dda8f2f1efb14a.zip
docs: fix typo in usage.md (#2502)
Diffstat (limited to 'docs/guide/usage.md')
-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 d7da0dfa..cdf8898c 100644
--- a/docs/guide/usage.md
+++ b/docs/guide/usage.md
@@ -168,7 +168,7 @@ interface User {
}
```
-As you can see, your `User` model probably looks completely different from the one you have in your codebase.
+As you can see, our `User` model probably looks completely different from the one you have in your codebase.
One thing to keep an eye on is the `subscriptionTier` property, as it is not simply a string, but only one of the strings defined in the `SubscriptionTier` type (`'free'` or `'basic'` or `'business'`).
Also, in a real scenario, your model should not depend on a type of a third party library (`SexType` in this case).