Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion appengine/standard/ndb/entities/snippets.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def create_entity_with_generated_id():
# note: no id kwarg
account = Account(username='Sandy', userid=1234, email='[email protected]')
account.put()
# Account.key will now have a key of the form: ndb.Key(Account, 71321839)
# account.key will now have a key of the form: ndb.Key(Account, 71321839)
# where the value 71321839 was generated by Datastore for us.
return account

Expand Down