diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/geodesic.c | 4 | ||||
| -rw-r--r-- | src/pj_malloc.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/geodesic.c b/src/geodesic.c index fd964226..5c038a33 100644 --- a/src/geodesic.c +++ b/src/geodesic.c @@ -1487,7 +1487,7 @@ real A3f(const struct geod_geodesic* g, real eps) { void C3f(const struct geod_geodesic* g, real eps, real c[]) { /* Evaluate C3 coeffs - * Elements c[1] thru c[nC3 - 1] are set */ + * Elements c[1] through c[nC3 - 1] are set */ real mult = 1; int o = 0, l; for (l = 1; l < nC3; ++l) { /* l is index of C3[l] */ @@ -1500,7 +1500,7 @@ void C3f(const struct geod_geodesic* g, real eps, real c[]) { void C4f(const struct geod_geodesic* g, real eps, real c[]) { /* Evaluate C4 coeffs - * Elements c[0] thru c[nC4 - 1] are set */ + * Elements c[0] through c[nC4 - 1] are set */ real mult = 1; int o = 0, l; for (l = 0; l < nC4; ++l) { /* l is index of C4[l] */ diff --git a/src/pj_malloc.c b/src/pj_malloc.c index b9d8f825..df6c6ed7 100644 --- a/src/pj_malloc.c +++ b/src/pj_malloc.c @@ -3,7 +3,7 @@ * Purpose: Memory management for proj.4. * This version includes an implementation of generic destructors, * for memory deallocation for the large majority of PJ-objects - * that do not allocate anything alse than the PJ-object itself, + * that do not allocate anything else than the PJ-object itself, * and its associated opaque object - i.e. no additional malloc'ed * memory inside the opaque object. * |
