diff options
Diffstat (limited to 'src/PJ_aitoff.c')
| -rw-r--r-- | src/PJ_aitoff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PJ_aitoff.c b/src/PJ_aitoff.c index ef6e7d71..68d95ef8 100644 --- a/src/PJ_aitoff.c +++ b/src/PJ_aitoff.c @@ -94,7 +94,7 @@ static LP s_inverse (XY xy, PJ *P) { /* Spheroidal, inverse */ if ((fabs(xy.x) < EPSILON) && (fabs(xy.y) < EPSILON )) { lp.phi = 0.; lp.lam = 0.; return lp; } - /* intial values for Newton-Raphson method */ + /* initial values for Newton-Raphson method */ lp.phi = xy.y; lp.lam = xy.x; do { iter = 0; |
