Skip to content

Commit 6a9e9bc

Browse files
committed
Merge pull request #1251 from dhermes/fix-bq-docs-bad-format
Fix formatting on BigQuery usage methods.
2 parents bc181db + 1222dd5 commit 6a9e9bc

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docs/bigquery-usage.rst

+4-3
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,20 @@ Authentication / Configuration
2727

2828
- Override the credentials inferred from the environment by passing explicit
2929
``credentials`` to one of the alternative ``classmethod`` factories,
30-
`:meth:gcloud.bigquery.client.Client.from_service_account_json`:
30+
:meth:`gcloud.bigquery.client.Client.from_service_account_json`:
3131

3232
.. doctest::
3333

3434
>>> from gcloud import bigquery
3535
>>> client = bigquery.Client.from_service_account_json('/path/to/creds.json')
3636

37-
or `:meth:gcloud.bigquery.client.Client.from_service_account_p12`:
37+
or :meth:`gcloud.bigquery.client.Client.from_service_account_p12`:
3838

3939
.. doctest::
4040

4141
>>> from gcloud import bigquery
42-
>>> client = bigquery.Client.from_service_account_p12('/path/to/creds.p12', 'jrandom@example.com')
42+
>>> client = bigquery.Client.from_service_account_p12(
43+
... '/path/to/creds.p12', 'jrandom@example.com')
4344

4445

4546
Projects

0 commit comments

Comments
 (0)