Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
docs: fix dcostringsg
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 committed Jun 25, 2020
1 parent 572de9e commit 1474d2b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Expand Up @@ -228,11 +228,11 @@ def list_voices(
language tag. If specified, the ListVoices call will
only return voices that can be used to synthesize this
language_code. E.g. when specifying "en-NZ", you will
get supported "en-*" voices; when specifying "no", you
will get supported "no-*" (Norwegian) and "nb-*"
get supported "en-\*" voices; when specifying "no", you
will get supported "no-\*" (Norwegian) and "nb-*"
(Norwegian Bokmal) voices; specifying "zh" will also get
supported "cmn-*" voices; specifying "zh-hk" will also
get supported "yue-*" voices.
get supported "yue-\*" voices.
This corresponds to the ``language_code`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
Expand Down
Expand Up @@ -228,11 +228,11 @@ def list_voices(
language tag. If specified, the ListVoices call will
only return voices that can be used to synthesize this
language_code. E.g. when specifying "en-NZ", you will
get supported "en-*" voices; when specifying "no", you
will get supported "no-*" (Norwegian) and "nb-*"
get supported "en-\*" voices; when specifying "no", you
will get supported "no-\*" (Norwegian) and "nb-*"
(Norwegian Bokmal) voices; specifying "zh" will also get
supported "cmn-*" voices; specifying "zh-hk" will also
get supported "yue-*" voices.
get supported "yue-\*" voices.
This corresponds to the ``language_code`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
Expand Down
2 changes: 1 addition & 1 deletion synth.py
Expand Up @@ -32,7 +32,7 @@

# Sphinx interprets `*` as emphasis
s.replace(
["google/cloud/**/*_client.py", "google/cloud/**/cloud_tts.py"],
["google/cloud/**/client.py", "google/cloud/**/cloud_tts.py"],
"((en)|(no)|(nb)(cmn)|(yue))-\*",
"\g<1>-\*",
)
Expand Down

0 comments on commit 1474d2b

Please sign in to comment.