Skip to content

Commit bdd7c70

Browse files
authored
Update closed-captions-javascript.md
acrolinx updates
1 parent 1a2a804 commit bdd7c70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/communication-services/quickstarts/voice-video-calling/includes/closed-captions/closed-captions-javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ let captionsCallFeature: SDK.CaptionsCallFeature = call.feature(SDK.Features.Cap
3636

3737

3838
## Get captions object
39-
You need to get and cast the Captions object to utilize Captions specific features
39+
You need to get and cast the Captions object to utilize Captions specific features.
4040
``` typescript
4141
let captions: SDK.Captions;
4242
if (captionsCallFeature.captions.kind === 'Captions') {
@@ -115,7 +115,7 @@ captions.on('SpokenLanguageChanged', spokenLanguageChangedHandler)
115115
```
116116

117117
## Start captions
118-
Once you've set up all your listeners, you can now start adding captions.
118+
Once you have set up all your listeners, you can now start adding captions.
119119
``` typescript
120120
try {
121121
await captions.startCaptions({ spokenLanguage: 'en-us' });

0 commit comments

Comments
 (0)