From 99030e6e4f349fd500f68b2cf7d742466d028f18 Mon Sep 17 00:00:00 2001 From: Richard Groves Date: Tue, 24 Jan 2023 15:58:02 +0000 Subject: [PATCH] Add // after with async/await to final example --- 3.0.0.md | 1 + 1 file changed, 1 insertion(+) diff --git a/3.0.0.md b/3.0.0.md index e34d2eeb9f..d053e7e1aa 100644 --- a/3.0.0.md +++ b/3.0.0.md @@ -202,6 +202,7 @@ Parse.Cloud.job('downloadImageJob', function(request, status) { ``` ```js +// after with async/await Parse.Cloud.job('downloadImageJob', async function(request) { const query = new Parse.Query('ImagesToDownload'); const images = await query.find();