Skip to content

Commit

Permalink
api: update JSDoc descriptions of coordinate core functions
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Scott-Lassiter committed May 25, 2022
1 parent ddc6472 commit f5658f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/coordinates/valid2DCoordinate.js
@@ -1,5 +1,5 @@
/**
* A helper function used to verify a coordinate has appropriate longitude and latitude values.
* Verifies a two element coordinate meets WGS-84 and GeoJSON validity requirements.
*
* @memberof Core.Coordinates
* @see https://github.com/M-Scott-Lassiter/jest-geojson/issues/1
Expand Down
2 changes: 1 addition & 1 deletion src/core/coordinates/valid3DCoordinate.js
@@ -1,7 +1,7 @@
const { valid2DCoordinate } = require('./valid2DCoordinate')

/**
* A helper function used to verify a coordinate has appropriate longitude, latitude, and altitude values.
* Verifies a three element coordinate meets WGS-84 and GeoJSON validity requirements.
*
* @memberof Core.Coordinates
* @see https://github.com/M-Scott-Lassiter/jest-geojson/issues/2
Expand Down
2 changes: 1 addition & 1 deletion src/core/coordinates/validCoordinate.js
Expand Up @@ -2,7 +2,7 @@ const { valid2DCoordinate } = require('./valid2DCoordinate')
const { valid3DCoordinate } = require('./valid3DCoordinate')

/**
* A helper function used to verify a coordinate has appropriate longitude, latitude, and altitude values.
* Verifies a two or three element coordinate meets WGS-84 and GeoJSON validity requirements.
*
* @memberof Core.Coordinates
* @see https://github.com/M-Scott-Lassiter/jest-geojson/issues/4
Expand Down

0 comments on commit f5658f3

Please sign in to comment.