1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Fix 'accross' typo, replace with 'across'.
Author: Bas Couwenberg <sebastic@debian.org>
Forwarded: https://github.com/mapserver/mapcache/pull/141
Applied-Upstream: https://github.com/mapserver/mapcache/commit/ac20472ef5385bf205c500a4f6793453ecaddac5
--- a/lib/service_demo.c
+++ b/lib/service_demo.c
@@ -282,7 +282,7 @@ static char *demo_head_gmaps =
" return null;\n"
" }\n"
"\n"
- " // repeat accross x-axis\n"
+ " // repeat across x-axis\n"
" if (x < 0 || x >= tileRange) {\n"
" x = (x % tileRange + tileRange) % tileRange;\n"
" }\n"
|