From d3896e6067b10fb36d80488039f0ca5ff7a3d261 Mon Sep 17 00:00:00 2001 From: Arthur Cinader <700572+acinader@users.noreply.github.com> Date: Tue, 28 Nov 2017 16:37:09 -0800 Subject: [PATCH] re-word awkward construct. --- _includes/js/queries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/js/queries.md b/_includes/js/queries.md index d818ca49e..156459b1c 100644 --- a/_includes/js/queries.md +++ b/_includes/js/queries.md @@ -363,7 +363,7 @@ query.find() }); -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: +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:

 var age16Query = new Parse.Query("User");