Skip to content

Commit 7deb328

Browse files
author
Xiting Zhang
committed
fix quotation typo
1 parent 7d4fc8c commit 7deb328

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/ai-services/speech-service/how-to-configure-azure-ad-auth.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ For ```SpeechRecognizer```, ```SourceLanguageRecognizer```, ```ConversationTrans
185185
TokenCredential browserCredential = new InteractiveBrowserCredential();
186186

187187
// Define the custom domain endpoint for your Speech resource. Learn more about [creating a custom domain](https://learn.microsoft.com/azure/ai-services/speech-service/speech-services-private-link?tabs=portal#create-a-custom-domain-name)
188-
var endpoint = wss://{your custom name}.cognitiveservices.azure.com/stt/speech/universal/v2";
188+
var endpoint = "wss://{your custom name}.cognitiveservices.azure.com/stt/speech/universal/v2";
189189

190190
// Create the SpeechConfig object using the custom domain endpoint and TokenCredential.
191191
var speechConfig = SpeechConfig.FromEndpoint(new Uri(endpoint), browserCredential);
@@ -261,7 +261,7 @@ For ```TranslationRecognizer``` objects, use an instance of ```TokenCredential``
261261
TokenCredential browserCredential = new InteractiveBrowserCredential();
262262

263263
// Define the custom domain endpoint for your Speech resource. Learn more about [creating a custom domain](https://learn.microsoft.com/azure/ai-services/speech-service/speech-services-private-link?tabs=portal#create-a-custom-domain-name)
264-
var endpoint = wss://{your custom name}.cognitiveservices.azure.com/stt/speech/universal/v2";
264+
var endpoint = "wss://{your custom name}.cognitiveservices.azure.com/stt/speech/universal/v2";
265265

266266
// Create the SpeechTranslationConfig object using the custom domain endpoint and TokenCredential.
267267
var speechConfig = SpeechTranslationConfig.FromEndpoint(new Uri(endpoint), browserCredential);

0 commit comments

Comments
 (0)