Skip to content

Commit 1382120

Browse files
committed
Fix typo: "procesing" -> "processing" in examples/azure/realtime/websocket.ts
1 parent 7f00398 commit 1382120

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/azure/realtime/websocket.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ async function main() {
4040

4141
rt.on('error', (err) => {
4242
// in a real world scenario this should be logged somewhere as you
43-
// likely want to continue procesing events regardless of any errors
43+
// likely want to continue processing events regardless of any errors
4444
throw err;
4545
});
4646

@@ -57,4 +57,4 @@ async function main() {
5757
rt.socket.addEventListener('close', () => console.log('\nConnection closed!'));
5858
}
5959

60-
main();
60+
main();

0 commit comments

Comments
 (0)