Skip to content

Commit c3039d1

Browse files
authored
Merge pull request #125370 from changeworld/patch-84
Fix typo
2 parents 881b95d + 17668a0 commit c3039d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-web-pubsub/socket-io-serverless-tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ You should follow the steps to initiate a local Azure Function project.
9898
});
9999
```
100100
101-
This step creates a function `negotiate` with Http Trigger and `SocketIONegotiation` output binding, which means you can use an Http call to trigger the function and return a negotiation result that generated by `SocketIONegotiation` binding.
101+
This step creates a function `negotiate` with HTTP Trigger and `SocketIONegotiation` output binding, which means you can use an HTTP call to trigger the function and return a negotiation result that generated by `SocketIONegotiation` binding.
102102
103103
1. Create a function for handing messages.
104104
@@ -219,7 +219,7 @@ You should follow the steps to initiate a local Azure Function project.
219219
220220
async function index(request, context) {
221221
try {
222-
context.log(`Http function processed request for url "${request.url}"`);
222+
context.log(`HTTP function processed request for url "${request.url}"`);
223223
224224
const filePath = path.join(__dirname,'../public/index.html');
225225
const html = await fs.readFile(filePath);

0 commit comments

Comments
 (0)