]> granicus.if.org Git - postgis/commitdiff
fix typo
authorRegina Obe <lr@pcorp.us>
Tue, 2 Jul 2013 14:06:06 +0000 (14:06 +0000)
committerRegina Obe <lr@pcorp.us>
Tue, 2 Jul 2013 14:06:06 +0000 (14:06 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@11606 b70326c6-7e19-0410-871a-916f4a2858ee

doc/reference_measure.xml

index 660618c5b0e7a158b3a5493c3a227d83cd82072b..7efd30fc05d62b0d5ccbc8aabe131b7743483254 100644 (file)
@@ -2154,7 +2154,7 @@ and will return the parcel that it intersects where  parts of building that don'
                <programlisting>SELECT DISTINCT ON(buildings.gid) buildings.gid, parcels.parcel_id 
    FROM buildings INNER JOIN parcels ON ST_Intersects(buildings.geom,parcels.geom) 
      ORDER BY buildings.gid, ST_MaxDistance(buildings.geom, parcels.geom);</programlisting>
-     <para>Basic furthest distance the point is to any part of the line</
+     <para>Basic furthest distance the point is to any part of the line</para>
                <programlisting>postgis=# SELECT ST_MaxDistance('POINT(0 0)'::geometry, 'LINESTRING ( 2 0, 0 2 )'::geometry);
    st_maxdistance
 -----------------