Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small changes to Cloud Storage doc pages. #101

Merged
merged 4 commits into from
Sep 22, 2014
Merged
Show file tree
Hide file tree
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 docs/datastore-quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ You can install the library quickly with ``pip``::
$ pip install gcloud

Run the
`example script <https://github.com/jgeewax/gcloud/blob/master/gcloud/datastore/demo.py>`_
`example script <https://github.com/GoogleCloudPlatform/gcloud-python/blob/master/gcloud/datastore/demo/demo.py>`_
included in the package::

$ python -m gcloud.datastore.demo
Expand Down
2 changes: 1 addition & 1 deletion docs/storage-getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Enabling the API
----------------

Now that you created a project,
you need to **turn on** the Cloud Datastore API.
you need to **turn on** the Google Cloud Storage API.
This is sort of like telling Google
which services you intend to use for this project.

Expand Down
3 changes: 2 additions & 1 deletion docs/storage-quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ You can install the library quickly with ``pip``::
$ pip install gcloud

Run the
`example script <https://github.com/jgeewax/gcloud/blob/master/gcloud/storage/demo.py>`_
`example script <https://github.com/GoogleCloudPlatform/gcloud-python/blob/master/gcloud/storage/demo/demo.py>`_
included in the package::

$ python -m gcloud.storage.demo
Expand Down Expand Up @@ -50,6 +50,7 @@ you can create buckets and keys::
'this is test content!'
>>> print bucket.get_all_keys()
[<Key: my-new-bucket, my-test-file.txt>]
>>> key.delete()
>>> bucket.delete()

.. note::
Expand Down