aboutsummaryrefslogtreecommitdiff
path: root/src/pj_internal.c
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2018-03-11 15:40:53 +0100
committerEven Rouault <even.rouault@spatialys.com>2018-03-11 15:40:53 +0100
commit7ddd7937085524bcfb09ae7eb2a2865e9de6b987 (patch)
tree7ebcef9efb94693c610a72960a05754d338e0dc3 /src/pj_internal.c
parenta3f5d6dff3587d3a1225c607359c241107232470 (diff)
downloadPROJ-7ddd7937085524bcfb09ae7eb2a2865e9de6b987.tar.gz
PROJ-7ddd7937085524bcfb09ae7eb2a2865e9de6b987.zip
Various typo fixes
Diffstat (limited to 'src/pj_internal.c')
-rw-r--r--src/pj_internal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pj_internal.c b/src/pj_internal.c
index 9b96444c..40f06bd6 100644
--- a/src/pj_internal.c
+++ b/src/pj_internal.c
@@ -209,7 +209,7 @@ consuming their surrounding whitespace.
/* First collapse repeated whitespace (including +/;) */
for (i = j = 0, ws = 0; j < n; j++) {
- /* Eliminate prefix '+', only if preceeded by whitespace */
+ /* Eliminate prefix '+', only if preceded by whitespace */
/* (i.e. keep it in 1.23e+08) */
if ((i > 0) && ('+'==c[j]) && ws)
c[j] = ' ';