@@ -44,7 +44,7 @@ class Entity(dict):
4444 <Entity[{'kind': 'MyEntityKind'}] {}>
4545
4646 - :func:`gcloud.datastore.dataset.Dataset.get_entity`
47- to retrive an existing entity.
47+ to retrive an existing entity.
4848
4949 >>> dataset.get_entity(key)
5050 <Entity[{'kind': 'EntityKind', id: 1234}] {'property': 'value'}>
@@ -71,8 +71,7 @@ def __init__(self, dataset=None, kind=None):
7171 self ._key = None
7272
7373 def dataset (self ):
74- """Get the :class:`gcloud.datastore.dataset.Dataset`
75- in which this entity belonds.
74+ """Get the :class:`gcloud.datastore.dataset.Dataset` in which this entity belongs.
7675
7776 .. note::
7877 This is based on the :class:`gcloud.datastore.key.Key` set on the entity.
@@ -120,14 +119,13 @@ def kind(self):
120119
121120 @classmethod
122121 def from_key (cls , key ):
123- """Factory method for creating an entity based on the
124- :class:`gcloud.datastore.key.Key`.
122+ """Factory method for creating an entity based on the :class:`gcloud.datastore.key.Key`.
125123
126124 :type key: :class:`gcloud.datastore.key.Key`
127125 :param key: The key for the entity.
128126
129127 :returns: The :class:`Entity` derived from the
130- :class:`gcloud.datastore.key.Key`.
128+ :class:`gcloud.datastore.key.Key`.
131129 """
132130
133131 return cls ().key (key )
@@ -139,10 +137,10 @@ def from_protobuf(cls, pb, dataset=None):
139137 The protobuf should be one returned from the Cloud Datastore Protobuf API.
140138
141139 :type key: :class:`gcloud.datastore.datastore_v1_pb2.Entity`
142- :param key: The Protobuf representing the entity.
140+ :param key: The Protobuf representing the entity.
143141
144142 :returns: The :class:`Entity` derived from the
145- :class:`gcloud.datastore.datastore_v1_pb2.Entity`.
143+ :class:`gcloud.datastore.datastore_v1_pb2.Entity`.
146144 """
147145
148146 # This is here to avoid circular imports.
0 commit comments