From 02ba8183e137e12b0aad9bf5beda32d8acc244be Mon Sep 17 00:00:00 2001 From: astigsen Date: Tue, 27 Feb 2018 14:33:11 -0800 Subject: [PATCH] Fixed missing chars --- docs/tutorials/query-language.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/query-language.md b/docs/tutorials/query-language.md index 35e9aeb6..f34702f2 100644 --- a/docs/tutorials/query-language.md +++ b/docs/tutorials/query-language.md @@ -103,8 +103,8 @@ Other objects can link to an object and you can query on that releationship usin Example: ```JS // Find contacts with no incomming links -let lonely = realm.objects('Contact').filtered('@links.@count == 0); +let lonely = realm.objects('Contact').filtered('@links.@count == 0'); // Find contacts where someone from SF has them as friends -realm.objects('Contact').filtered('@links.Contact.friends.city == "SF"); +realm.objects('Contact').filtered('@links.Contact.friends.city == "SF"'); ```