From b58ef149818e17e9e5ccdbad6af93ef282e25849 Mon Sep 17 00:00:00 2001 From: Shinigami Date: Sun, 21 Jan 2024 13:19:38 +0100 Subject: [PATCH] docs: fix longitude options (#2611) --- src/modules/location/index.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/modules/location/index.ts b/src/modules/location/index.ts index 608e65a6504..20e260934ca 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 */