Skip to content

Commit

Permalink
Merge pull request #2005 from daspecster/fix-datastore-init-doc
Browse files Browse the repository at this point in the history
Fix datastore __init__ docstring.
  • Loading branch information
daspecster authored Jul 20, 2016
2 parents e0addef + a50936d commit b213cb8
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions gcloud/datastore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@

"""Shortcut methods for getting set up with Google Cloud Datastore.
You'll typically use these to get started with the API:
>>> from gcloud import datastore
>>>
>>> client = datastore.Client()
>>> key = client.key('EntityKind', 1234)
>>> entity = datastore.Entity(key)
>>> query = client.query(kind='EntityKind')
You'll typically use these to get started with the API::
>>> from gcloud import datastore
>>>
>>> client = datastore.Client()
>>> key = client.key('EntityKind', 1234)
>>> entity = datastore.Entity(key)
>>> query = client.query(kind='EntityKind')
The main concepts with this API are:
Expand Down

0 comments on commit b213cb8

Please sign in to comment.