Skip to content

Commit 46434c4

Browse files
authored
Update audio-streaming-quickstart-csharp.md
add missing comma
1 parent a8e610a commit 46434c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/communication-services/how-tos/call-automation/includes/audio-streaming-quickstart-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ Once Azure Communication Services begins streaming audio to your WebSocket serve
151151
The example below demonstrates how to transmit the audio data back into the call after it has been processed by another service, for instance Azure OpenAI or other such voice based Large Language Models.
152152

153153
``` C#
154-
var audioData = OutStreamingData.GetAudioDataForOutbound(audioData))
154+
var audioData = OutStreamingData.GetAudioDataForOutbound(audioData)),
155155
byte[] jsonBytes = Encoding.UTF8.GetBytes(audioData);
156156

157157
// Write your logic to send the PCM audio chunk over the WebSocket

0 commit comments

Comments
 (0)