Skip to content

Commit f797b79

Browse files
committedJun 17, 2014
Merge pull request #1459 from cdavila/patch-1
Fix wrong reference to geometries in syntax
2 parents ed1d08d + a70c865 commit f797b79

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed
 

‎resources/function_help/IS

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Returns 1 if a is the same as b.
33

44
<h4>Syntax</h4>
5-
<pre>a is b</pre>
5+
<pre>a IS b</pre>
66

77
<h4>Arguments</h4>
88
None
@@ -13,6 +13,5 @@ None
1313
<pre> 4 IS 4 &rarr; returns 1 </pre>
1414
<pre> 4 IS 2+2 &rarr; returns 1 </pre>
1515
<pre> 4 IS 2 &rarr; returns 0 </pre>
16-
<pre> 4 IS 2 &rarr; returns 0 </pre>
1716
<pre> $geometry IS NULL &rarr; returns 0, if your geometry is not NULL</pre>
1817

‎resources/function_help/contains

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<h3>contains function</h3>
2-
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.
2+
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.
33

44
<h4>Syntax</h4>
5-
<pre>contains( geometry a , geometry a)</pre>
5+
<pre>contains( geometry a , geometry b)</pre>
66

77
<h4>Arguments</h4>
88
geometry &rarr; geometry

0 commit comments

Comments
 (0)
Please sign in to comment.