You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by rv...@apache.org on 2016/09/30 00:33:52 UTC

[45/50] [abbrv] incubator-geode git commit: Fix typo in example query string [#130865217]

Fix typo in example query string [#130865217]


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/d6dc0fe6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/d6dc0fe6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/d6dc0fe6

Branch: refs/staging/docs-grant1
Commit: d6dc0fe6af22ac8406559302a5c582b2b330bf5e
Parents: 42624de
Author: Dave Barnes <db...@pivotal.io>
Authored: Wed Sep 21 15:24:56 2016 -0700
Committer: Dave Barnes <db...@pivotal.io>
Committed: Wed Sep 21 15:24:56 2016 -0700

----------------------------------------------------------------------
 getting_started/querying_quick_reference.html.md.erb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/d6dc0fe6/getting_started/querying_quick_reference.html.md.erb
----------------------------------------------------------------------
diff --git a/getting_started/querying_quick_reference.html.md.erb b/getting_started/querying_quick_reference.html.md.erb
index 727c086..9a06d1f 100644
--- a/getting_started/querying_quick_reference.html.md.erb
+++ b/getting_started/querying_quick_reference.html.md.erb
@@ -112,7 +112,7 @@ SELECT DISTINCT * FROM /exampleRegion p WHERE p.status = 'active'
 SELECT p.ID, p.status FROM /exampleRegion p WHERE p.ID > 0
 ```
 
-**Using the NOT Operator**.
+**Using the NOT Operator**
 
 See [Operators](../developing/query_additional/operators.html#operators) for a complete list of supported operators.
 
@@ -121,7 +121,7 @@ SELECT DISTINCT * FROM /exampleRegion WHERE NOT (status = 'active') AND ID = 2
 ```
 
 ``` pre
-SELECT * FROM /exampleRegion WHERE NOT (ID IN SET(1,2)
+SELECT * FROM /exampleRegion WHERE NOT (ID IN SET(1,2))
 ```
 
 **Using the AND and OR Operators**