aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Leskis <[email protected]>2023-01-05 23:22:40 +0000
committerGitHub <[email protected]>2023-01-05 23:22:40 +0000
commit95d0765caaf882c87064cbbeae5399a2582b7f9d (patch)
tree2c2ae9463e6b5ed7b5684c03fcdab2399e097359
parentc66f7bd70f930c4a080cc24cc8d09baab260f6d0 (diff)
downloadfaker-95d0765caaf882c87064cbbeae5399a2582b7f9d.tar.xz
faker-95d0765caaf882c87064cbbeae5399a2582b7f9d.zip
docs: fix simple typo (#1712)
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 15e98ef5..dccce7dc 100644
--- a/README.md
+++ b/README.md
@@ -81,8 +81,8 @@ Array.from({ length: 10 }).forEach(() => {
The above code indicates a basic usage of Faker.
The point of interest is the import statements at the top.
-The first import indicates how one can import the entirety of Faker, which includes every local, while the commented-out import showcases how to import only a single local.
-In most situations, importing a single local is preferable for performance because some testing frameworks reload imports for every test file, which causes startup latencies to add up quickly.
+The first import indicates how one can import the entirety of Faker, which includes every locale, while the commented-out import showcases how to import only a single locale.
+In most situations, importing a single locale is preferable for performance because some testing frameworks reload imports for every test file, which causes startup latencies to add up quickly.
Thus, limiting the import to a single locale can speed up startup times.
## 💎 Modules