diff options
| author | Matt Mayer <[email protected]> | 2023-03-29 16:21:02 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-03-29 09:21:02 +0000 |
| commit | 2c9e0b8cfa2fea4f861be019ad23d11ff36613cf (patch) | |
| tree | 75b98504a5cb33bc4441df957d28b3c57598c8af /src/modules/location | |
| parent | bbf65d89a46be9f70c1ae250d62140044404dbcc (diff) | |
| download | faker-2c9e0b8cfa2fea4f861be019ad23d11ff36613cf.tar.xz faker-2c9e0b8cfa2fea4f861be019ad23d11ff36613cf.zip | |
docs(location): improve documentation for state and county (#1987)
Diffstat (limited to 'src/modules/location')
| -rw-r--r-- | src/modules/location/index.ts | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/modules/location/index.ts b/src/modules/location/index.ts index fb902588..37d8f14f 100644 --- a/src/modules/location/index.ts +++ b/src/modules/location/index.ts @@ -228,10 +228,10 @@ export class LocationModule { } /** - * Returns a random localized county. + * Returns a random localized county, or other equivalent second-level administrative entity for the locale's country such as a district or department. * * @example - * faker.location.county() // 'Cambridgeshire' + * fakerEN_GB.location.county() // 'Cambridgeshire' * * @since 8.0.0 */ @@ -297,10 +297,12 @@ export class LocationModule { } /** - * Returns a random localized state from this country. + * Returns a random localized state, or other equivalent first-level administrative entity for the locale's country such as a province or region. * * @example - * faker.location.state() // 'Georgia' + * faker.location.state() // 'Mississippi' + * fakerEN_CA.location.state() // 'Saskatchewan' + * fakerDE.location.state() // 'Nordrhein-Westfalen' * * @since 8.0.0 */ |
