Skip to content

Commit

Permalink
Fix datastore __init__ docstring.
Browse files Browse the repository at this point in the history
  • Loading branch information
daspecster committed Jul 20, 2016
1 parent e0addef commit a50936d
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 a50936d

Please sign in to comment.