aboutsummaryrefslogtreecommitdiff
path: root/src/definitions
diff options
context:
space:
mode:
authorMatt Mayer <[email protected]>2023-03-29 16:21:02 +0700
committerGitHub <[email protected]>2023-03-29 09:21:02 +0000
commit2c9e0b8cfa2fea4f861be019ad23d11ff36613cf (patch)
tree75b98504a5cb33bc4441df957d28b3c57598c8af /src/definitions
parentbbf65d89a46be9f70c1ae250d62140044404dbcc (diff)
downloadfaker-2c9e0b8cfa2fea4f861be019ad23d11ff36613cf.tar.xz
faker-2c9e0b8cfa2fea4f861be019ad23d11ff36613cf.zip
docs(location): improve documentation for state and county (#1987)
Diffstat (limited to 'src/definitions')
-rw-r--r--src/definitions/location.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/definitions/location.ts b/src/definitions/location.ts
index c0f6dfa9..6987327d 100644
--- a/src/definitions/location.ts
+++ b/src/definitions/location.ts
@@ -45,17 +45,17 @@ export type LocationDefinitions = LocaleEntry<{
country_code: Array<{ alpha2: string; alpha3: string }>;
/**
- * The names of this country's states.
+ * The names of this country's states, or other first-level administrative areas.
*/
state: string[];
/**
- * The abbreviated names of this country's states.
+ * The abbreviated names of this country's states, or other first-level administrative areas.
*/
state_abbr: string[];
/**
- * The names of counties inside the country or state.
+ * The names of counties, or other second-level administrative areas, inside the country's states.
*/
county: string[];