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

Speech GAPIC to master #3607

Merged
merged 9 commits into from
Jul 14, 2017
Prev Previous commit
Next Next commit
Fix the docs.
  • Loading branch information
lukesneeringer committed Jul 14, 2017
commit fe8bab08679272ab95fe1bed43b08e647bd34a1c
6 changes: 3 additions & 3 deletions docs/speech/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Great Britain.

>>> from google.cloud import speech
>>> client = speech.SpeechClient()
>>> result = client.recognize(
>>> results = client.recognize(
... audio=speech.types.RecognitionAudio(
... uri='gs://my-bucket/recording.flac',
... ),
Expand Down Expand Up @@ -113,7 +113,7 @@ Example of using the profanity filter.

>>> from google.cloud import speech
>>> client = speech.SpeechClient()
>>> result = client.recognize(
>>> results = client.recognize(
... audio=speech.types.RecognitionAudio(
... uri='gs://my-bucket/recording.flac',
... ),
Expand Down Expand Up @@ -142,7 +142,7 @@ words to the vocabulary of the recognizer.
>>> from google.cloud import speech
>>> from google.cloud import speech
>>> client = speech.SpeechClient()
>>> result = client.recognize(
>>> results = client.recognize(
... audio=speech.types.RecognitionAudio(
... uri='gs://my-bucket/recording.flac',
... ),
Expand Down