@@ -146,7 +146,7 @@ def table(self, table_id):
146146 :type table_id: str
147147 :param table_id: the ID of the table.
148148
149- :rtype: :class:`google.cloud.bigquery.TableReference`
149+ :rtype: :class:`google.cloud.bigquery.table. TableReference`
150150 :returns: a TableReference for a table in this dataset.
151151 """
152152 return TableReference (self , table_id )
@@ -197,7 +197,7 @@ class Dataset(object):
197197 See
198198 https://cloud.google.com/bigquery/docs/reference/rest/v2/datasets
199199
200- :type dataset_ref: :class:`~google.cloud.bigquery.DatasetReference`
200+ :type dataset_ref: :class:`~google.cloud.bigquery.dataset. DatasetReference`
201201 :param dataset_ref: a pointer to a dataset
202202 """
203203
@@ -238,7 +238,8 @@ def access_entries(self):
238238 def access_entries (self , value ):
239239 """Update dataset's access entries
240240
241- :type value: list of :class:`~google.cloud.bigquery.AccessEntry`
241+ :type value:
242+ list of :class:`~google.cloud.bigquery.dataset.AccessEntry`
242243 :param value: roles granted to entities for this dataset
243244
244245 :raises: TypeError if 'value' is not a sequence, or ValueError if
@@ -401,8 +402,9 @@ def labels(self):
401402 """Labels for the dataset.
402403
403404 This method always returns a dict. To change a dataset's labels,
404- modify the dict, then call ``Client.update_dataset``. To delete a
405- label, set its value to ``None`` before updating.
405+ modify the dict, then call
406+ :meth:`google.cloud.bigquery.client.Client.update_dataset`. To delete
407+ a label, set its value to ``None`` before updating.
406408
407409 :rtype: dict, {str -> str}
408410 :returns: A dict of the the dataset's labels.
@@ -429,7 +431,7 @@ def from_api_repr(cls, resource):
429431 :type resource: dict
430432 :param resource: dataset resource representation returned from the API
431433
432- :rtype: :class:`~google.cloud.bigquery.Dataset`
434+ :rtype: :class:`~google.cloud.bigquery.dataset. Dataset`
433435 :returns: Dataset parsed from ``resource``.
434436 """
435437 dsr = resource .get ('datasetReference' )
@@ -451,7 +453,7 @@ def _parse_access_entries(access):
451453 :type access: list of mappings
452454 :param access: each mapping represents a single access entry.
453455
454- :rtype: list of :class:`~google.cloud.bigquery.AccessEntry`
456+ :rtype: list of :class:`~google.cloud.bigquery.dataset. AccessEntry`
455457 :returns: a list of parsed entries.
456458 :raises: :class:`ValueError` if a entry in ``access`` has more keys
457459 than ``role`` and one additional key.
@@ -530,7 +532,7 @@ def table(self, table_id):
530532 :type table_id: str
531533 :param table_id: the ID of the table.
532534
533- :rtype: :class:`~google.cloud.bigquery.TableReference`
535+ :rtype: :class:`~google.cloud.bigquery.table. TableReference`
534536 :returns: a TableReference for a table in this dataset.
535537 """
536538 return TableReference (self , table_id )
0 commit comments