Skip to content

Commit af1fc08

Browse files
authored
Merge pull request #190218 from trrwilson/patch-11
[Cog Svcs] Speech SDK - address small formatting issue in python code snippet
2 parents 956cdad + 48a1ab7 commit af1fc08

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)