Skip to content

Commit 45e706f

Browse files
leahecolennegrey
authored andcommitted
Fix typos in dialogflow cloud client comments (GoogleCloudPlatform#1889)
* Fix typo in comments * Fix typos in comments (conversaion -> conversation)
1 parent b19a882 commit 45e706f

6 files changed

+6
-6
lines changed

dialogflow/cloud-client/detect_intent_audio.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def detect_intent_audio(project_id, session_id, audio_file_path,
3636
"""Returns the result of detect intent with an audio file as input.
3737
3838
Using the same `session_id` between requests allows continuation
39-
of the conversaion."""
39+
of the conversation."""
4040
import dialogflow_v2 as dialogflow
4141

4242
session_client = dialogflow.SessionsClient()

dialogflow/cloud-client/detect_intent_stream.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def detect_intent_stream(project_id, session_id, audio_file_path,
3535
"""Returns the result of detect intent with streaming audio as input.
3636
3737
Using the same `session_id` between requests allows continuation
38-
of the conversaion."""
38+
of the conversation."""
3939
import dialogflow_v2 as dialogflow
4040
session_client = dialogflow.SessionsClient()
4141

dialogflow/cloud-client/detect_intent_texts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def detect_intent_texts(project_id, session_id, texts, language_code):
3535
"""Returns the result of detect intent with texts as inputs.
3636
3737
Using the same `session_id` between requests allows continuation
38-
of the conversaion."""
38+
of the conversation."""
3939
import dialogflow_v2 as dialogflow
4040
session_client = dialogflow.SessionsClient()
4141

dialogflow/cloud-client/detect_intent_with_model_selection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def detect_intent_with_model_selection(project_id, session_id, audio_file_path,
3333
as input
3434
3535
Using the same `session_id` between requests allows continuation
36-
of the conversaion."""
36+
of the conversation."""
3737
import dialogflow_v2beta1 as dialogflow
3838
session_client = dialogflow.SessionsClient()
3939

dialogflow/cloud-client/detect_intent_with_sentiment_analysis.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def detect_intent_with_sentiment_analysis(project_id, session_id, texts,
3434
sentiment of the query text.
3535
3636
Using the same `session_id` between requests allows continuation
37-
of the conversaion."""
37+
of the conversation."""
3838
import dialogflow_v2beta1 as dialogflow
3939
session_client = dialogflow.SessionsClient()
4040

dialogflow/cloud-client/detect_intent_with_texttospeech_response.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def detect_intent_with_texttospeech_response(project_id, session_id, texts,
3333
the response in an audio format.
3434
3535
Using the same `session_id` between requests allows continuation
36-
of the conversaion."""
36+
of the conversation."""
3737
import dialogflow_v2beta1 as dialogflow
3838
session_client = dialogflow.SessionsClient()
3939

0 commit comments

Comments
 (0)