Skip to content

Commit 2d05d46

Browse files
authored
Merge pull request #487 from parse-community/acinader-patch-1
re-word awkward construct.
2 parents ffd9e96 + d3896e6 commit 2d05d46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_includes/js/queries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ query.find()
363363
});
364364
</code></pre>
365365

366-
Sometimes world is complexer than this simple example and you may need an compound query of sub queries. You can use `Parse.Query.and` method to construct a query that is an AND of the queries passed in. For instance if you want to find users in the age of 16 or 18 who have either no friends or at least 2 friends, you can do:
366+
Sometimes the world is more complex than this simple example and you may need a compound query of sub queries. You can use `Parse.Query.and` method to construct a query that is an AND of the queries passed in. For instance if you want to find users in the age of 16 or 18 who have either no friends or at least 2 friends, you can do:
367367

368368
<pre><code class="javascript">
369369
var age16Query = new Parse.Query("User");

0 commit comments

Comments
 (0)