Skip to content

Commit

Permalink
Merge pull request #9 from proppy/master
Browse files Browse the repository at this point in the history
fix typos
  • Loading branch information
Burcu Dogan committed Jul 9, 2014
2 parents 8e374c3 + e20311c commit ad89c9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ in detail on [Megastore: Providing Scalable, Highly Available Storage for Intera
If you're running this client on Google Compute Engine, you need to construct a dataset with your Compute Engine enabled project's ID (e.g. bamboo-shift-454). Project ID is listed on the [Google Developers Console](https://console.developers.google.com/project).

~~~~ js
var cloud = require('gcloud'),
var gcloud = require('gcloud'),
ds = new gcloud.datastore.Dataset({ projectId: YOUR_PROJECT_ID });
~~~~

Expand Down Expand Up @@ -119,7 +119,7 @@ ds.saveAll([key1, key2, key3], [obj1, obj2, obj3], function(err, keys) {
Deletion requires the key of the entity to be deleted.

~~~~ js
ds.del(['Company', 599900452312], obj, function(err) {
ds.del(['Company', 599900452312], function(err) {

});
// alternatively, you can delete multiple entities of different
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"email": "jbd@google.com"
}
],
"main": "./lib/gcloud",
"main": "./lib/index",
"repository": {
"type": "git",
"url": "https://github.com/googlecloudplatform/gcloud-nodejs.git"
Expand Down

0 comments on commit ad89c9a

Please sign in to comment.