diff options
| author | Shinigami <[email protected]> | 2024-01-21 13:19:38 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-01-21 13:19:38 +0100 |
| commit | b58ef149818e17e9e5ccdbad6af93ef282e25849 (patch) | |
| tree | b543d58c6dbfbdb4d44d03306760bd3b00e79a6c /src/modules/location | |
| parent | a0c757eb87dcb9bcee21835d8931e222c1adef56 (diff) | |
| download | faker-b58ef149818e17e9e5ccdbad6af93ef282e25849.tar.xz faker-b58ef149818e17e9e5ccdbad6af93ef282e25849.zip | |
docs: fix longitude options (#2611)
Diffstat (limited to 'src/modules/location')
| -rw-r--r-- | src/modules/location/index.ts | 10 |
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 */ |
