]> granicus.if.org Git - postgis/commitdiff
Spelling error fixes from Sebastiaan Couwenberg
authorRegina Obe <lr@pcorp.us>
Sun, 7 Feb 2016 05:37:38 +0000 (05:37 +0000)
committerRegina Obe <lr@pcorp.us>
Sun, 7 Feb 2016 05:37:38 +0000 (05:37 +0000)
references #3449

git-svn-id: http://svn.osgeo.org/postgis/trunk@14627 b70326c6-7e19-0410-871a-916f4a2858ee

doc/xsl/postgis_aggs_mm.xml.xsl
extras/WFS_locks/WFS_locks.c
postgis/long_xact.c
postgis/lwgeom_transform.c

index 11527c0bc76a9fbe8329f91f779e6cee8f5db75b..f43d65bd34132796aeb4a255c2a120f629820c2e 100644 (file)
@@ -81,7 +81,7 @@
                        <title>PostGIS Geography Support Functions</title>
                        <para>The functions and operators given below are PostGIS functions/operators that take as input or return as output a <link linkend="PostGIS_Geography">geography</link> data type object.</para>
                        <note><para>Functions with a (T) are not native geodetic functions, and use a ST_Transform call to and from geometry to do the operation.  As a result, they may not behave as expected when going over dateline, poles, 
-                               and for large geometries or geometry pairs that cover more than one UTM zone. Basic tranform - (favoring UTM, Lambert Azimuthal (North/South), and falling back on mercator in worst case scenario)</para></note>
+                               and for large geometries or geometry pairs that cover more than one UTM zone. Basic transform - (favoring UTM, Lambert Azimuthal (North/South), and falling back on mercator in worst case scenario)</para></note>
                                <itemizedlist>
                        <!-- Pull out the purpose section for each ref entry and strip whitespace and put in a variable to be tagged unto each function comment  -->
                                <xsl:for-each select='//refentry'>
index 67f1569bb0dd80bf972876d17a99c02787acf73f..31c79bf63b639e2063756c5950138e7bcad7accd 100644 (file)
@@ -137,7 +137,7 @@ Datum check_authorization(PG_FUNCTION_ARGS)
 
        SPIcode = SPI_exec(query,0);
        if (SPIcode != SPI_OK_SELECT )
-               elog(ERROR, "couldnt execute to test for lock aquire: %s", query);
+               elog(ERROR, "couldnt execute to test for lock acquire: %s", query);
 
        if (SPI_processed >0)
        {
index c8289ca5ef8f8ba8508d5f6d2722183b6b3727a7..91b2344bae66a4a7943c8d08451831814465ccd9 100644 (file)
@@ -156,7 +156,7 @@ Datum check_authorization(PG_FUNCTION_ARGS)
 
        SPIcode = SPI_exec(query,0);
        if (SPIcode != SPI_OK_SELECT )
-               elog(ERROR, "couldnt execute to test for lock aquire: %s", query);
+               elog(ERROR, "couldnt execute to test for lock acquire: %s", query);
 
        if (SPI_processed >0)
        {
index 2e8ee5d2bbaeae2480c044c87be6cb05dd2785ae..8cefbb89598e4cc100c4df9c6bc06c25067903a3 100644 (file)
@@ -127,7 +127,7 @@ Datum transform_geom(PG_FUNCTION_ARGS)
        result_srid = PG_GETARG_INT32(3);
        if (result_srid == SRID_UNKNOWN)
        {
-               elog(ERROR,"tranform: destination SRID = %d",SRID_UNKNOWN);
+               elog(ERROR,"transform: destination SRID = %d",SRID_UNKNOWN);
                PG_RETURN_NULL();
        }