diff --git a/docs/datastore-quickstart.rst b/docs/datastore-quickstart.rst index 6c889d71f9c4..83236f7854a3 100644 --- a/docs/datastore-quickstart.rst +++ b/docs/datastore-quickstart.rst @@ -22,7 +22,7 @@ You can install the library quickly with ``pip``:: $ pip install gcloud Run the -`example script `_ +`example script `_ included in the package:: $ python -m gcloud.datastore.demo diff --git a/docs/storage-getting-started.rst b/docs/storage-getting-started.rst index 3cca86d0d5cd..2d5e39681b37 100644 --- a/docs/storage-getting-started.rst +++ b/docs/storage-getting-started.rst @@ -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. diff --git a/docs/storage-quickstart.rst b/docs/storage-quickstart.rst index b28f22fa22c6..a0d8de424419 100644 --- a/docs/storage-quickstart.rst +++ b/docs/storage-quickstart.rst @@ -12,7 +12,7 @@ You can install the library quickly with ``pip``:: $ pip install gcloud Run the -`example script `_ +`example script `_ included in the package:: $ python -m gcloud.storage.demo @@ -50,6 +50,7 @@ you can create buckets and keys:: 'this is test content!' >>> print bucket.get_all_keys() [] + >>> key.delete() >>> bucket.delete() .. note::