Skip to content

Commit 5f87d27

Browse files
authored
Apply suggestions from code review
1 parent c1ffc04 commit 5f87d27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_includes/cloudcode/cloud-code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ Parse.Cloud.afterLiveQueryEvent('MyObject', request => {
654654
original.set('name', 'yolo');
655655
});
656656

657-
// Prevent LiveQuery trigger unless 'foo' is modified
657+
// Prevent LiveQuery trigger unless 'foo' is modified
658658
Parse.Cloud.afterLiveQueryEvent('MyObject', (request) => {
659659
const object = request.object;
660660
const original = request.original;
@@ -677,7 +677,7 @@ Parse.Cloud.afterLiveQueryEvent('MyObject', async (request) => {
677677
await pointer.fetch();
678678
});
679679

680-
//Extend matchesQuery functionality to LiveQuery
680+
// Extend matchesQuery functionality to LiveQuery
681681
Parse.Cloud.afterLiveQueryEvent('MyObject', async (request) => {
682682
if (request.event != "Create") {
683683
return;

0 commit comments

Comments
 (0)