aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShinigami <[email protected]>2024-01-21 13:19:38 +0100
committerGitHub <[email protected]>2024-01-21 13:19:38 +0100
commitb58ef149818e17e9e5ccdbad6af93ef282e25849 (patch)
treeb543d58c6dbfbdb4d44d03306760bd3b00e79a6c /src
parenta0c757eb87dcb9bcee21835d8931e222c1adef56 (diff)
downloadfaker-b58ef149818e17e9e5ccdbad6af93ef282e25849.tar.xz
faker-b58ef149818e17e9e5ccdbad6af93ef282e25849.zip
docs: fix longitude options (#2611)
Diffstat (limited to 'src')
-rw-r--r--src/modules/location/index.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/location/index.ts b/src/modules/location/index.ts
index 608e65a6..20e26093 100644
--- a/src/modules/location/index.ts
+++ b/src/modules/location/index.ts
@@ -600,19 +600,19 @@ export class LocationModule extends ModuleBase {
*/
longitude(options?: {
/**
- * The upper bound for the latitude to generate.
+ * The upper bound for the longitude to generate.
*
- * @default 90
+ * @default 180
*/
max?: number;
/**
- * The lower bound for the latitude to generate.
+ * The lower bound for the longitude to generate.
*
- * @default -90
+ * @default -180
*/
min?: number;
/**
- * The number of decimal points of precision for the latitude.
+ * The number of decimal points of precision for the longitude.
*
* @default 4
*/