Skip to content

Commit 48a1ab7

Browse files
authored
[Cog Svcs] Speech SDK - address small formatting issue in python code snippet
1 parent fe81ffb commit 48a1ab7

File tree

1 file changed

+1
-1
lines changed
  • articles/cognitive-services/Speech-Service/includes/quickstarts/speech-to-text-basics

1 file changed

+1
-1
lines changed

articles/cognitive-services/Speech-Service/includes/quickstarts/speech-to-text-basics/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Follow these steps to create a new console application and install the Speech SD
5151
speech_recognition_result = speech_recognizer.recognize_once_async().get()
5252
5353
if speech_recognition_result.reason == speechsdk.ResultReason.RecognizedSpeech:
54-
print("Recognized: {}".format(speech_recognition_result.text))
54+
print("Recognized: {}".format(speech_recognition_result.text))
5555
elif speech_recognition_result.reason == speechsdk.ResultReason.NoMatch:
5656
print("No speech could be recognized: {}".format(speech_recognition_result.no_match_details))
5757
elif speech_recognition_result.reason == speechsdk.ResultReason.Canceled:

0 commit comments

Comments
 (0)