Skip to content

Commit a5007cd

Browse files
authored
Update functions-bindings-azure-mysql-output.md
1 parent 8b6536f commit a5007cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-functions/functions-bindings-azure-mysql-output.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -411,13 +411,13 @@ The [configuration](#configuration) section explains these properties.
411411
The following example is sample JavaScript code:
412412

413413
```javascript
414-
module.exports = async function (context, req, products) {
414+
module.exports = async function (context, req, product) {
415415
context.log('JavaScript HTTP trigger and MySQL output binding function processed a request.');
416416

417417
context.res = {
418418
// status: 200, /* Defaults to 200 */
419419
mimetype: "application/json",
420-
body: products
420+
body: product
421421
};
422422
}
423423
```

0 commit comments

Comments
 (0)