Skip to content

Commit

Permalink
Merge pull request #1459 from cdavila/patch-1
Browse files Browse the repository at this point in the history
Fix wrong reference to geometries in syntax
  • Loading branch information
wonder-sk committed Jun 17, 2014
2 parents ed1d08d + a70c865 commit f797b79
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions resources/function_help/IS
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Returns 1 if a is the same as b.

<h4>Syntax</h4>
<pre>a is b</pre>
<pre>a IS b</pre>

<h4>Arguments</h4>
None
Expand All @@ -13,6 +13,5 @@ None
<pre> 4 IS 4 &rarr; returns 1 </pre>
<pre> 4 IS 2+2 &rarr; returns 1 </pre>
<pre> 4 IS 2 &rarr; returns 0 </pre>
<pre> 4 IS 2 &rarr; returns 0 </pre>
<pre> $geometry IS NULL &rarr; returns 0, if your geometry is not NULL</pre>

4 changes: 2 additions & 2 deletions resources/function_help/contains
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<h3>contains function</h3>
Returns true if and only if no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a.
Returns true if and only if no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a.

<h4>Syntax</h4>
<pre>contains( geometry a , geometry a)</pre>
<pre>contains( geometry a , geometry b)</pre>

<h4>Arguments</h4>
geometry &rarr; geometry
Expand Down

0 comments on commit f797b79

Please sign in to comment.