Skip to content

Commit

Permalink
Fix typos in dialogflow cloud client comments [(#1889)](#1889)
Browse files Browse the repository at this point in the history
* Fix typo in comments

* Fix typos in comments (conversaion -> conversation)
  • Loading branch information
leahecole authored and dandhlee committed Feb 6, 2023
1 parent 6206ac0 commit dbbfd28
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dialogflow/detect_intent_audio.py
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
2 changes: 1 addition & 1 deletion dialogflow/detect_intent_stream.py
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
2 changes: 1 addition & 1 deletion dialogflow/detect_intent_texts.py
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
2 changes: 1 addition & 1 deletion dialogflow/detect_intent_with_model_selection.py
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
2 changes: 1 addition & 1 deletion dialogflow/detect_intent_with_sentiment_analysis.py
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
2 changes: 1 addition & 1 deletion dialogflow/detect_intent_with_texttospeech_response.py
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 dbbfd28

Please sign in to comment.