<refsection>
<title>Example</title>
- <para>When closed surfaces are created with WKT, they are treated as areal rather than solid. To make them solid, you need to use <xref linked="ST_MakeSolid" />.
+ <para>When closed surfaces are created with WKT, they are treated as areal rather than solid. To make them solid, you need to use <xref linkend="ST_MakeSolid" />.
Areal geometries have no volume. Here is an example to demonstrate.</para>
<programlisting>SELECT ST_Volume(geom) As cube_surface_vol,
ST_Volume(ST_MakeSolid(geom)) As solid_surface_vol