diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2017-02-26 15:04:02 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2017-02-26 15:04:02 +0100 |
| commit | 86cead6323c13936e327e232f394d6e2f54e6f8e (patch) | |
| tree | fa1e4b09f944467128f65894cba8319a6cede489 /src/geodesic.c | |
| parent | b288ee6bbc345baf2ef56aaec49184c34a6cd0dd (diff) | |
| download | PROJ-86cead6323c13936e327e232f394d6e2f54e6f8e.tar.gz PROJ-86cead6323c13936e327e232f394d6e2f54e6f8e.zip | |
Typo fixes
Diffstat (limited to 'src/geodesic.c')
| -rw-r--r-- | src/geodesic.c | 4 |
1 files changed, 2 insertions, 2 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] */ |
