aboutsummaryrefslogtreecommitdiff
path: root/src/projections/tmerc.cpp
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2020-04-21 20:47:05 +0200
committerEven Rouault <even.rouault@spatialys.com>2020-04-21 20:47:05 +0200
commit5142bfbf72f859832df3da691dc3e7488839b53c (patch)
tree5de71c5e5ec58f7b9e95f638f5a493975ec11ff8 /src/projections/tmerc.cpp
parente493a5c17b2ebebb687b1758c0a10c418ffd49d3 (diff)
downloadPROJ-5142bfbf72f859832df3da691dc3e7488839b53c.tar.gz
PROJ-5142bfbf72f859832df3da691dc3e7488839b53c.zip
Typo fixes in code comments [ci skip]
Diffstat (limited to 'src/projections/tmerc.cpp')
-rw-r--r--src/projections/tmerc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/projections/tmerc.cpp b/src/projections/tmerc.cpp
index ff4a8136..1e5fc1a8 100644
--- a/src/projections/tmerc.cpp
+++ b/src/projections/tmerc.cpp
@@ -609,7 +609,7 @@ static PJ_LP auto_e_inv (PJ_XY xy, PJ *P) {
// For k = 1 and lon = 3 (from central meridian),
// At lat = 0, we get x ~= 0.052, y = 0
// At lat = 90, we get x = 0, y ~= 1.57
- // And the shape of this x=f(y) frontier curve is very very rougly a
+ // And the shape of this x=f(y) frontier curve is very very roughly a
// parabola. Hence:
if( fabs(xy.x) > 0.053 - 0.022 * xy.y * xy.y )
return exact_e_inv(xy, P);