From 9f22065d2a2895ef39032f0d3e58b8a553fbad20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Ros?= Date: Wed, 7 Dec 2016 15:56:56 -0800 Subject: [PATCH] Fix filename in sample Mismatch between code sample and described js filename. --- src/Microsoft.AspNetCore.NodeServices/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNetCore.NodeServices/README.md b/src/Microsoft.AspNetCore.NodeServices/README.md index c2c6bbc3..92e97a16 100644 --- a/src/Microsoft.AspNetCore.NodeServices/README.md +++ b/src/Microsoft.AspNetCore.NodeServices/README.md @@ -67,7 +67,7 @@ public async Task MyAction([FromServices] INodeServices nodeServi } ``` -Of course, you also need to supply the Node.js code you want to invoke. Create a file called `addNumber.js` at the root of your ASP.NET Core application, and add the following code: +Of course, you also need to supply the Node.js code you want to invoke. Create a file called `addNumbers.js` at the root of your ASP.NET Core application, and add the following code: ```javascript module.exports = function (callback, first, second) {