aboutsummaryrefslogtreecommitdiff
path: root/src/pj_inv.c
diff options
context:
space:
mode:
authorMike Toews <mwtoews@gmail.com>2018-03-06 12:18:18 +1300
committerMike Toews <mwtoews@gmail.com>2018-03-06 12:18:18 +1300
commit5769d0bceef0b72494b87f63b040dafaed5da983 (patch)
treed4cf02584fcfaa477639a973dab2029e1d4a5147 /src/pj_inv.c
parent7d9a545d5052c3845a43c0bd96c124e93ed6d630 (diff)
downloadPROJ-5769d0bceef0b72494b87f63b040dafaed5da983.tar.gz
PROJ-5769d0bceef0b72494b87f63b040dafaed5da983.zip
fix a few typos (again)
Diffstat (limited to 'src/pj_inv.c')
-rw-r--r--src/pj_inv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pj_inv.c b/src/pj_inv.c
index 4ea88b69..9918c59d 100644
--- a/src/pj_inv.c
+++ b/src/pj_inv.c
@@ -115,9 +115,9 @@ static PJ_COORD pj_inv_prepare (PJ *P, PJ_COORD coo) {
return coo;
/* Classic proj.4 functions expect plane coordinates in units of the semimajor axis */
- /* Multiplying by ra, rather than dividing by a because the CALCOFI projection */
+ /* Multiplying by ra, rather than dividing by a because the CalCOFI projection */
/* stomps on a and hence (apparently) depends on this to roundtrip correctly */
- /* (CALCOFI avoids further scaling by stomping - but a better solution is possible) */
+ /* (CalCOFI avoids further scaling by stomping - but a better solution is possible) */
coo.xyz.x *= P->ra;
coo.xyz.y *= P->ra;
return coo;