diff --git a/articles/ai-services/speech-service/includes/how-to/recognize-speech/csharp.md b/articles/ai-services/speech-service/includes/how-to/recognize-speech/csharp.md index 2356b1d1774..16ba04565c7 100644 --- a/articles/ai-services/speech-service/includes/how-to/recognize-speech/csharp.md +++ b/articles/ai-services/speech-service/includes/how-to/recognize-speech/csharp.md @@ -206,7 +206,7 @@ Next, subscribe to the events that `SpeechRecognizer` sends: * [`Recognizing`](/dotnet/api/microsoft.cognitiveservices.speech.speechrecognizer.recognizing): Signal for events that contain intermediate recognition results. * [`Recognized`](/dotnet/api/microsoft.cognitiveservices.speech.speechrecognizer.recognized): Signal for events that contain final recognition results, which indicate a successful recognition attempt. * [`SessionStopped`](/dotnet/api/microsoft.cognitiveservices.speech.recognizer.sessionstopped): Signal for events that indicate the end of a recognition session (operation). -* [`Canceled`](/dotnet/api/microsoft.cognitiveservices.speech.speechrecognizer.canceled): Signal for events that contain canceled recognition results. These results indicate a recognition attempt that was canceled as a result of a direct cancelation request. Alternatively, they indicate a transport or protocol failure. +* [`Canceled`](/dotnet/api/microsoft.cognitiveservices.speech.speechrecognizer.canceled): Signal for events that contain canceled recognition results. These results indicate a recognition attempt that was canceled as a result of a direct cancellation request. Alternatively, they indicate a transport or protocol failure. ```csharp speechRecognizer.Recognizing += (s, e) => diff --git a/articles/ai-services/speech-service/includes/how-to/recognize-speech/java.md b/articles/ai-services/speech-service/includes/how-to/recognize-speech/java.md index dad26959cbb..637eabe35a1 100644 --- a/articles/ai-services/speech-service/includes/how-to/recognize-speech/java.md +++ b/articles/ai-services/speech-service/includes/how-to/recognize-speech/java.md @@ -152,7 +152,7 @@ Next, subscribe to the events that [`SpeechRecognizer`](/java/api/com.microsoft. * [`recognizing`](/java/api/com.microsoft.cognitiveservices.speech.speechrecognizer.recognizing): Signal for events that contain intermediate recognition results. * [`recognized`](/java/api/com.microsoft.cognitiveservices.speech.speechrecognizer.recognized): Signal for events that contain final recognition results, which indicate a successful recognition attempt. * [`sessionStopped`](/java/api/com.microsoft.cognitiveservices.speech.recognizer.sessionstopped): Signal for events that indicate the end of a recognition session (operation). -* [`canceled`](/java/api/com.microsoft.cognitiveservices.speech.speechrecognizer.canceled): Signal for events that contain canceled recognition results. These results indicate a recognition attempt that was canceled as a result of a direct cancelation request. Alternatively, they indicate a transport or protocol failure. +* [`canceled`](/java/api/com.microsoft.cognitiveservices.speech.speechrecognizer.canceled): Signal for events that contain canceled recognition results. These results indicate a recognition attempt that was canceled as a result of a direct cancellation request. Alternatively, they indicate a transport or protocol failure. ```java // First initialize the semaphore. diff --git a/articles/ai-services/speech-service/includes/how-to/recognize-speech/javascript.md b/articles/ai-services/speech-service/includes/how-to/recognize-speech/javascript.md index 76f8627c7e8..be9d7620050 100644 --- a/articles/ai-services/speech-service/includes/how-to/recognize-speech/javascript.md +++ b/articles/ai-services/speech-service/includes/how-to/recognize-speech/javascript.md @@ -140,7 +140,7 @@ Next, subscribe to the events sent from [`SpeechRecognizer`](/javascript/api/mic * [`recognizing`](/javascript/api/microsoft-cognitiveservices-speech-sdk/speechrecognizer#recognizing): Signal for events that contain intermediate recognition results. * [`recognized`](/javascript/api/microsoft-cognitiveservices-speech-sdk/speechrecognizer#recognized): Signal for events that contain final recognition results, which indicate a successful recognition attempt. * [`sessionStopped`](/javascript/api/microsoft-cognitiveservices-speech-sdk/speechrecognizer#sessionstopped): Signal for events that indicate the end of a recognition session (operation). -* [`canceled`](/javascript/api/microsoft-cognitiveservices-speech-sdk/speechrecognizer#canceled): Signal for events that contain canceled recognition results. These results indicate a recognition attempt that was canceled as a result of a direct cancelation request. Alternatively, they indicate a transport or protocol failure. +* [`canceled`](/javascript/api/microsoft-cognitiveservices-speech-sdk/speechrecognizer#canceled): Signal for events that contain canceled recognition results. These results indicate a recognition attempt that was canceled as a result of a direct cancellation request. Alternatively, they indicate a transport or protocol failure. ```javascript speechRecognizer.recognizing = (s, e) => { diff --git a/articles/ai-services/speech-service/includes/how-to/recognize-speech/python.md b/articles/ai-services/speech-service/includes/how-to/recognize-speech/python.md index 75405ffdd02..219c630d3c6 100644 --- a/articles/ai-services/speech-service/includes/how-to/recognize-speech/python.md +++ b/articles/ai-services/speech-service/includes/how-to/recognize-speech/python.md @@ -128,7 +128,7 @@ The following code sample shows how to connect callbacks to events sent from [`S * [`recognized`](/python/api/azure-cognitiveservices-speech/azure.cognitiveservices.speech.recognizer#azure-cognitiveservices-speech-recognizer-recognized): Signal for events that contain final recognition results, which indicate a successful recognition attempt. * [`session_started`](/python/api/azure-cognitiveservices-speech/azure.cognitiveservices.speech.recognizer#azure-cognitiveservices-speech-recognizer-session-started): Signal for events that indicate the start of a recognition session (operation). * [`session_stopped`](/python/api/azure-cognitiveservices-speech/azure.cognitiveservices.speech.recognizer#azure-cognitiveservices-speech-recognizer-session-stopped): Signal for events that indicate the end of a recognition session (operation). -* [`canceled`](/python/api/azure-cognitiveservices-speech/azure.cognitiveservices.speech.recognizer#azure-cognitiveservices-speech-recognizer-canceled): Signal for events that contain canceled recognition results. These results indicate a recognition attempt that was canceled as a result of a direct cancelation request. Alternatively, they indicate a transport or protocol failure. +* [`canceled`](/python/api/azure-cognitiveservices-speech/azure.cognitiveservices.speech.recognizer#azure-cognitiveservices-speech-recognizer-canceled): Signal for events that contain canceled recognition results. These results indicate a recognition attempt that was canceled as a result of a direct cancellation request. Alternatively, they indicate a transport or protocol failure. ```Python speech_recognizer.recognizing.connect(lambda evt: print('RECOGNIZING: {}'.format(evt)))