Skip to content

Commit 6385721

Browse files
committed
Fix typo: "procesing" -> "processing" in realtime.md
1 parent 2a2f5d4 commit 6385721

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

realtime.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ rt.socket.on('open', () => {
3939

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

@@ -80,8 +80,7 @@ It is **highly recommended** that you register an `error` event listener and han
8080
const rt = new OpenAIRealtimeWS({ model: 'gpt-4o-realtime-preview-2024-12-17' });
8181
rt.on('error', (err) => {
8282
// in a real world scenario this should be logged somewhere as you
83-
// likely want to continue procesing events regardless of any errors
83+
// likely want to continue processing events regardless of any errors
8484
throw err;
8585
});
86-
```
87-
86+
```

0 commit comments

Comments
 (0)