Skip to content

Commit

Permalink
docs: fix longitude options (#2611)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 committed Jan 21, 2024
1 parent a0c757e commit b58ef14
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/modules/location/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down

0 comments on commit b58ef14

Please sign in to comment.