@@ -45,7 +45,7 @@ class Person(Model):
4545 person = Person(name='Arthur Dent', age=42)
4646 key = person.put()
4747
48- The return value from put() is a Key (see the documentation for ndb/key.py),
48+ The return value from put() is a Key (see the documentation for `` ndb/key.py`` ),
4949which can be used to retrieve the same entity later::
5050
5151 person2 = key.get()
@@ -1900,7 +1900,7 @@ def _validate_key(value, entity=None):
19001900class ModelKey (Property ):
19011901 """Special property to store a special "key" for a :class:`Model`.
19021902
1903- This is intended to be used as a psuedo -:class:`Property` on each
1903+ This is intended to be used as a pseudo -:class:`Property` on each
19041904 :class:`Model` subclass. It is **not** intended for other usage in
19051905 application code.
19061906
@@ -2777,7 +2777,7 @@ def user_id(self):
27772777
27782778 Returns:
27792779 Optional[str]: A permanent unique identifying string or
2780- :data:`None`. If the email address was set explicity , this will
2780+ :data:`None`. If the email address was set explicitly , this will
27812781 return :data:`None`.
27822782 """
27832783 return self ._user_id
@@ -2935,7 +2935,7 @@ class UserProperty(Property):
29352935 This was useful for tracking which user modifies a model instance.
29362936 auto_current_user_add (bool): Deprecated flag. When supported, if this
29372937 flag was set to :data:`True`, the property value would be set to
2938- the urrently signed-in user he first time the model instance is
2938+ the currently signed-in user he first time the model instance is
29392939 stored in the datastore, unless the property has already been
29402940 assigned a value. This was useful for tracking which user creates
29412941 a model instance, which may not be the same user that modifies it
@@ -4640,7 +4640,7 @@ def _gql(cls, query_string, *args, **kwargs):
46404640
46414641 Args:
46424642 query_string (str): The WHERE part of a GQL query (including the
4643- WHERE kwyword ).
4643+ WHERE keyword ).
46444644 args: if present, used to call bind() on the query.
46454645 kwargs: if present, used to call bind() on the query.
46464646
@@ -4964,7 +4964,7 @@ def _allocate_ids_async(
49644964 operation.
49654965
49664966 Returns:
4967- tasklets.Future: Eventural result is ``tuple(key.Key)``: Keys for
4967+ tasklets.Future: Eventual result is ``tuple(key.Key)``: Keys for
49684968 the newly allocated IDs.
49694969 """
49704970 if max :
@@ -5423,7 +5423,7 @@ def _populate(self, **kwargs):
54235423 provision for key, id, or parent are made.
54245424
54255425 Arguments:
5426- **kwargs: Keyword arguments corresponding to poperties of this
5426+ **kwargs: Keyword arguments corresponding to properties of this
54275427 model class.
54285428 """
54295429 self ._set_attributes (kwargs )
0 commit comments