Skip to content

Commit

Permalink
Fix comment to refer to geometry, not geography
Browse files Browse the repository at this point in the history
Section ref and details were correct, but "header" was wrong.
  • Loading branch information
jeremy-w committed Jul 28, 2021
1 parent dd3f0e6 commit 8b4d922
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/udt.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const parsePoints = (buffer, count, isGeometryPoint) => {
}

if (isGeometryPoint) {
// GEOGRAPHY POINT (s2.1.6): x then y.
// GEOMETRY POINT (s2.1.6): x then y.
for (let i = 1; i <= count; i++) {
const point = new Point()
points.push(point)
Expand Down

0 comments on commit 8b4d922

Please sign in to comment.