aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2017-02-26 15:04:02 +0100
committerEven Rouault <even.rouault@spatialys.com>2017-02-26 15:04:02 +0100
commit86cead6323c13936e327e232f394d6e2f54e6f8e (patch)
treefa1e4b09f944467128f65894cba8319a6cede489 /src
parentb288ee6bbc345baf2ef56aaec49184c34a6cd0dd (diff)
downloadPROJ-86cead6323c13936e327e232f394d6e2f54e6f8e.tar.gz
PROJ-86cead6323c13936e327e232f394d6e2f54e6f8e.zip
Typo fixes
Diffstat (limited to 'src')
-rw-r--r--src/geodesic.c4
-rw-r--r--src/pj_malloc.c2
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.
*