Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in dialogflow cloud client comments #1889

Merged
merged 2 commits into from
Dec 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dialogflow/cloud-client/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/cloud-client/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/cloud-client/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
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