Skip to content

Commit

Permalink
Fix typos in dialogflow cloud client comments [(#1889)](GoogleCloudPl…
Browse files Browse the repository at this point in the history
…atform/python-docs-samples#1889)

* Fix typo in comments

* Fix typos in comments (conversaion -> conversation)
  • Loading branch information
leahecole authored and busunkim96 committed Dec 9, 2020
1 parent 99760ee commit 60b40f7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def detect_intent_audio(project_id, session_id, audio_file_path,
"""Returns the result of detect intent with an audio file as input.
Using the same `session_id` between requests allows continuation
of the conversaion."""
of the conversation."""
import dialogflow_v2 as dialogflow

session_client = dialogflow.SessionsClient()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def detect_intent_stream(project_id, session_id, audio_file_path,
"""Returns the result of detect intent with streaming audio as input.
Using the same `session_id` between requests allows continuation
of the conversaion."""
of the conversation."""
import dialogflow_v2 as dialogflow
session_client = dialogflow.SessionsClient()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def detect_intent_texts(project_id, session_id, texts, language_code):
"""Returns the result of detect intent with texts as inputs.
Using the same `session_id` between requests allows continuation
of the conversaion."""
of the conversation."""
import dialogflow_v2 as dialogflow
session_client = dialogflow.SessionsClient()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def detect_intent_with_model_selection(project_id, session_id, audio_file_path,
as input
Using the same `session_id` between requests allows continuation
of the conversaion."""
of the conversation."""
import dialogflow_v2beta1 as dialogflow
session_client = dialogflow.SessionsClient()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def detect_intent_with_sentiment_analysis(project_id, session_id, texts,
sentiment of the query text.
Using the same `session_id` between requests allows continuation
of the conversaion."""
of the conversation."""
import dialogflow_v2beta1 as dialogflow
session_client = dialogflow.SessionsClient()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def detect_intent_with_texttospeech_response(project_id, session_id, texts,
the response in an audio format.
Using the same `session_id` between requests allows continuation
of the conversaion."""
of the conversation."""
import dialogflow_v2beta1 as dialogflow
session_client = dialogflow.SessionsClient()

Expand Down

0 comments on commit 60b40f7

Please sign in to comment.