[postgis-tickets] r14627 - Spelling error fixes from Sebastiaan Couwenberg

Regina Obe lr at pcorp.us
Sat Feb 6 21:37:38 PST 2016


Author: robe
Date: 2016-02-06 21:37:38 -0800 (Sat, 06 Feb 2016)
New Revision: 14627

Modified:
   trunk/doc/xsl/postgis_aggs_mm.xml.xsl
   trunk/extras/WFS_locks/WFS_locks.c
   trunk/postgis/long_xact.c
   trunk/postgis/lwgeom_transform.c
Log:
Spelling error fixes from Sebastiaan Couwenberg 
references #3449

Modified: trunk/doc/xsl/postgis_aggs_mm.xml.xsl
===================================================================
--- trunk/doc/xsl/postgis_aggs_mm.xml.xsl	2016-02-05 19:47:50 UTC (rev 14626)
+++ trunk/doc/xsl/postgis_aggs_mm.xml.xsl	2016-02-07 05:37:38 UTC (rev 14627)
@@ -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: trunk/extras/WFS_locks/WFS_locks.c
===================================================================
--- trunk/extras/WFS_locks/WFS_locks.c	2016-02-05 19:47:50 UTC (rev 14626)
+++ trunk/extras/WFS_locks/WFS_locks.c	2016-02-07 05:37:38 UTC (rev 14627)
@@ -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: trunk/postgis/long_xact.c
===================================================================
--- trunk/postgis/long_xact.c	2016-02-05 19:47:50 UTC (rev 14626)
+++ trunk/postgis/long_xact.c	2016-02-07 05:37:38 UTC (rev 14627)
@@ -156,7 +156,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: trunk/postgis/lwgeom_transform.c
===================================================================
--- trunk/postgis/lwgeom_transform.c	2016-02-05 19:47:50 UTC (rev 14626)
+++ trunk/postgis/lwgeom_transform.c	2016-02-07 05:37:38 UTC (rev 14627)
@@ -127,7 +127,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