File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
articles/cognitive-services/Speech-Service/includes/quickstarts/speech-to-text-basics Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ Follow these steps to create a new console application and install the Speech SD
51
51
speech_recognition_result = speech_recognizer.recognize_once_async().get()
52
52
53
53
if speech_recognition_result.reason == speechsdk.ResultReason.RecognizedSpeech:
54
- print("Recognized: {}".format(speech_recognition_result.text))
54
+ print("Recognized: {}".format(speech_recognition_result.text))
55
55
elif speech_recognition_result.reason == speechsdk.ResultReason.NoMatch:
56
56
print("No speech could be recognized: {}".format(speech_recognition_result.no_match_details))
57
57
elif speech_recognition_result.reason == speechsdk.ResultReason.Canceled:
You can’t perform that action at this time.
0 commit comments