Skip to content

Commit bce27d3

Browse files
authored
Merge pull request #112869 from john-par/patch-18
Update speech-to-text-basics-python.md
2 parents 0d53995 + ba45bdf commit bce27d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Here's an example of synchronous single-shot recognition using [`recognize_once(
101101
result = speech_recognizer.recognize_once()
102102
```
103103

104-
Here's an example of synchronous single-shot recognition using [`recognize_once_async()`](https://docs.microsoft.com/python/api/azure-cognitiveservices-speech/azure.cognitiveservices.speech.recognizer?view=azure-python#recognize-once-async------azure-cognitiveservices-speech-resultfuture):
104+
Here's an example of asynchronous single-shot recognition using [`recognize_once_async()`](https://docs.microsoft.com/python/api/azure-cognitiveservices-speech/azure.cognitiveservices.speech.recognizer?view=azure-python#recognize-once-async------azure-cognitiveservices-speech-resultfuture):
105105

106106
```Python
107107
result = speech_recognizer.recognize_once_async()
@@ -230,4 +230,4 @@ phrase_list_grammar.clear()
230230
Phrase lists are only one option to improve recognition accuracy. You can also:
231231

232232
* [Improve accuracy with Custom Speech](../../../how-to-custom-speech.md)
233-
* [Improve accuracy with tenant models](../../../tutorial-tenant-model.md)
233+
* [Improve accuracy with tenant models](../../../tutorial-tenant-model.md)

0 commit comments

Comments
 (0)