[postgis-tickets] r16624 - Add spaces in documentation

Daniel Baston dbaston at gmail.com
Tue Jun 26 07:55:01 PDT 2018


Author: dbaston
Date: 2018-06-26 07:55:00 -0700 (Tue, 26 Jun 2018)
New Revision: 16624

Modified:
   trunk/doc/reference_constructor.xml
Log:
Add spaces in documentation

Patch from hannes
Closes https://gitlab.com/postgis/postgis/merge_requests/10



Modified: trunk/doc/reference_constructor.xml
===================================================================
--- trunk/doc/reference_constructor.xml	2018-06-18 21:47:12 UTC (rev 16623)
+++ trunk/doc/reference_constructor.xml	2018-06-26 14:55:00 UTC (rev 16624)
@@ -1507,7 +1507,7 @@
 -- For pre-PostgreSQL 9.0 - this usually works,
 -- but the planner may on occasion choose not to respect the order of the subquery
 SELECT gps.gps_track, ST_MakeLine(gps.the_geom) As newgeom
-	FROM (SELECT gps_track,gps_time, the_geom
+	FROM (SELECT gps_track, gps_time, the_geom
 			FROM gps_points ORDER BY gps_track, gps_time) As gps
 	GROUP BY gps.gps_track;</programlisting>
 
@@ -1748,7 +1748,7 @@
 		<refnamediv>
 		<refname>ST_MakePoint</refname>
 
-		<refpurpose>Creates a 2D,3DZ or 4D point geometry.</refpurpose>
+		<refpurpose>Creates a 2D, 3DZ or 4D point geometry.</refpurpose>
 		</refnamediv>
 
 		<refsynopsisdiv>
@@ -1781,7 +1781,7 @@
 		<refsection>
 			<title>Description</title>
 
-			<para>Creates a 2D,3DZ or 4D point geometry (geometry with measure).
+			<para>Creates a 2D, 3DZ or 4D point geometry (geometry with measure).
 			<varname>ST_MakePoint</varname> while not being OGC compliant is
 			generally faster and more precise than <xref linkend="ST_GeomFromText" />
 			and <xref linkend="ST_PointFromText" />.  It is also easier to use if
@@ -1788,7 +1788,7 @@
 			you have raw coordinates rather than WKT.</para>
 
 			<note><para>Note x is longitude and y is latitude</para></note>
-			<note><para>Use <xref linkend="ST_MakePointM" /> if you need to make a point with x,y,m.</para></note>
+			<note><para>Use <xref linkend="ST_MakePointM" /> if you need to make a point with x, y and m.</para></note>
 			<para>&Z_support;</para>
 
 		</refsection>



More information about the postgis-tickets mailing list