Skip to content

Commit

Permalink
Fix Sphinx roles for classes.
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
tseaver committed Feb 18, 2015
1 parent 3d2699e commit 510836a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gcloud/datastore/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def delete(self, keys):
dataset_id=self.dataset_id)

def key(self, *path_args, **kwargs):
"""Proxy to :func:`gcloud.datastore.key.Key`.
"""Proxy to :class:`gcloud.datastore.key.Key`.
Passes our ``dataset_id``.
"""
Expand All @@ -73,22 +73,22 @@ def key(self, *path_args, **kwargs):
return Key(*path_args, **kwargs)

def batch(self):
"""Proxy to :func:`gcloud.datastore.batch.Batch`.
"""Proxy to :class:`gcloud.datastore.batch.Batch`.
Passes our ``dataset_id``.
"""
return Batch(dataset_id=self.dataset_id, connection=self.connection)

def transaction(self):
"""Proxy to :func:`gcloud.datastore.transaction.Transaction`.
"""Proxy to :class:`gcloud.datastore.transaction.Transaction`.
Passes our ``dataset_id``.
"""
return Transaction(dataset_id=self.dataset_id,
connection=self.connection)

def query(self, **kwargs):
"""Proxy to :func:`gcloud.datastore.query.Query`.
"""Proxy to :class:`gcloud.datastore.query.Query`.
Passes our ``dataset_id``.
"""
Expand Down

0 comments on commit 510836a

Please sign in to comment.