Skip to content

Commit 7f00398

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/realtime/ws.ts

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

2929
rt.on('error', (err) => {
3030
// in a real world scenario this should be logged somewhere as you
31-
// likely want to continue procesing events regardless of any errors
31+
// likely want to continue processing events regardless of any errors
3232
throw err;
3333
});
3434

@@ -45,4 +45,4 @@ async function main() {
4545
rt.socket.on('close', () => console.log('\nConnection closed!'));
4646
}
4747

48-
main();
48+
main();

0 commit comments

Comments
 (0)