From dbf1a5dcee4a33b47dfbd9b6f34052414a1a02e6 Mon Sep 17 00:00:00 2001 From: Takashi Takebayashi Date: Tue, 16 Dec 2025 11:24:34 +0900 Subject: [PATCH] Fix typo: recieved -> received --- .../speech-service/includes/quickstarts/openai-speech/python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/ai-services/speech-service/includes/quickstarts/openai-speech/python.md b/articles/ai-services/speech-service/includes/quickstarts/openai-speech/python.md index 89b0a1276a2..881eabbc63c 100644 --- a/articles/ai-services/speech-service/includes/quickstarts/openai-speech/python.md +++ b/articles/ai-services/speech-service/includes/quickstarts/openai-speech/python.md @@ -101,7 +101,7 @@ Follow these steps to create a new console application. if chunk_message is not None: collected_messages.append(chunk_message) # save the message if chunk_message in tts_sentence_end: # sentence end found - text = ''.join(collected_messages).strip() # join the recieved message together to build a sentence + text = ''.join(collected_messages).strip() # join the received message together to build a sentence if text != '': # if sentence only have \n or space, we could skip print(f"Speech synthesized to speaker for: {text}") last_tts_request = speech_synthesizer.speak_text_async(text)