From f73e25c02db240977f9cf473258f3e087821bf4c Mon Sep 17 00:00:00 2001 From: Toby Marsden Date: Wed, 7 Aug 2024 16:35:38 +0200 Subject: [PATCH] docs: correct cloud code function argument number (#952) --- _includes/cloudcode/cloud-code.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/cloudcode/cloud-code.md b/_includes/cloudcode/cloud-code.md index abe4b96b..de89b45e 100644 --- a/_includes/cloudcode/cloud-code.md +++ b/_includes/cloudcode/cloud-code.md @@ -104,7 +104,7 @@ const ratings = await Parse.Cloud.run("averageStars", params); // ratings should be 4.5 ``` -In general, two arguments will be passed into cloud functions: +In general, these arguments will be passed into Cloud Functions: 1. **`request`** - The request object contains information about the request. The following fields are set: 1. **`params`** - The parameters object sent to the function by the client.