diff --git a/docs/translate/client.rst b/docs/translate/client.rst index 9f6aa5e1ece9..fbd7a4a18aeb 100644 --- a/docs/translate/client.rst +++ b/docs/translate/client.rst @@ -1,7 +1,7 @@ Translation Client ================== -.. automodule:: google.cloud.translate.client +.. automodule:: google.cloud.translate_v2.client :members: :undoc-members: :show-inheritance: diff --git a/nox.py b/nox.py index 25db4c616c4f..bf4a5d57d6c1 100644 --- a/nox.py +++ b/nox.py @@ -30,13 +30,13 @@ def docs(session): # Install Sphinx and also all of the google-cloud-* packages. session.chdir(os.path.realpath(os.path.dirname(__file__))) session.install('Sphinx >= 1.6.2', 'sphinx_rtd_theme') + session.install('.') session.install( 'core/', 'bigquery/', 'bigtable/', 'datastore/', 'dns/', 'language/', 'logging/', 'error_reporting/', 'monitoring/', 'pubsub/', 'resource_manager/', 'runtimeconfig/', 'spanner/', 'speech/', 'storage/', 'trace/', 'translate/', 'vision/', ) - session.install('-e', '.') # Build the docs! session.run('bash', './test_utils/scripts/update_docs.sh')