Skip to content

Commit

Permalink
fix: error message syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
carmi2214 committed Feb 23, 2022
1 parent 3ee6166 commit 25121de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dry-run-release-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: workflow_dispatch

jobs:
release:
name: Release
name: Dry release
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion src/common/constants/error-messages.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const
COORDINATE_VALIDATION_ERROR_MESSAGE = `Invalid arguments were given. Must send either a point as array or lat & long as numbers.`,
COORDINATE_VALIDATION_ERROR_MESSAGE = `Invalid arguments were given. Must send either a point as an array or lat & long as numbers.`,
POLYGON_VALIDATION_ERROR_MESSAGE = "Failed validating polygon. Validate that the polygon is an array of vertices. " +
"Each vertex of the polygon must be represented as an array of [x: number, y: number]";

0 comments on commit 25121de

Please sign in to comment.