[postgis-tickets] r14628 - Spelling error fixes from Sebastiaan Couwenberg for 2.2
Regina Obe
lr at pcorp.us
Sat Feb 6 21:50:56 PST 2016
Author: robe
Date: 2016-02-06 21:50:55 -0800 (Sat, 06 Feb 2016)
New Revision: 14628
Modified:
branches/2.2/doc/xsl/postgis_aggs_mm.xml.xsl
branches/2.2/extras/WFS_locks/WFS_locks.c
branches/2.2/postgis/long_xact.c
branches/2.2/postgis/lwgeom_transform.c
Log:
Spelling error fixes from Sebastiaan Couwenberg for 2.2
closes #3449
Modified: branches/2.2/doc/xsl/postgis_aggs_mm.xml.xsl
===================================================================
--- branches/2.2/doc/xsl/postgis_aggs_mm.xml.xsl 2016-02-07 05:37:38 UTC (rev 14627)
+++ branches/2.2/doc/xsl/postgis_aggs_mm.xml.xsl 2016-02-07 05:50:55 UTC (rev 14628)
@@ -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'>
Modified: branches/2.2/extras/WFS_locks/WFS_locks.c
===================================================================
--- branches/2.2/extras/WFS_locks/WFS_locks.c 2016-02-07 05:37:38 UTC (rev 14627)
+++ branches/2.2/extras/WFS_locks/WFS_locks.c 2016-02-07 05:50:55 UTC (rev 14628)
@@ -137,7 +137,7 @@
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)
{
Modified: branches/2.2/postgis/long_xact.c
===================================================================
--- branches/2.2/postgis/long_xact.c 2016-02-07 05:37:38 UTC (rev 14627)
+++ branches/2.2/postgis/long_xact.c 2016-02-07 05:50:55 UTC (rev 14628)
@@ -143,7 +143,7 @@
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)
{
Modified: branches/2.2/postgis/lwgeom_transform.c
===================================================================
--- branches/2.2/postgis/lwgeom_transform.c 2016-02-07 05:37:38 UTC (rev 14627)
+++ branches/2.2/postgis/lwgeom_transform.c 2016-02-07 05:50:55 UTC (rev 14628)
@@ -114,7 +114,7 @@
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();
}
More information about the postgis-tickets
mailing list