Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
christkv committed Dec 4, 2013
2 parents 4aa2727 + 898df5c commit cd154f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -2,7 +2,7 @@

### Bugfixes

- Before starting to write code, look for existing [tickets](https://github.com/mongodb/node-mongodb-native/issues) or [create one](https://github.com/mongodb/node-mongodb-native/issues/new) for your specific issue. That way you avoid working on something that might not be of interest or that has been addressed already in a different branch.
- Before starting to write code, look for existing [tickets](https://jira.mongodb.org/browse/NODE) or [create one](https://jira.mongodb.org/secure/CreateIssue!default.jspa) for your specific issue under the "Node Driver" project. That way you avoid working on something that might not be of interest or that has been addressed already in a different branch.
- Fork the [repo](https://github.com/mongodb/node-mongodb-native) _or_ for small documentation changes, navigate to the source on github and click the [Edit](https://github.com/blog/844-forking-with-the-edit-button) button.
- Follow the general coding style of the rest of the project:
- 2 space tabs
Expand Down
4 changes: 2 additions & 2 deletions examples/simple.js
Expand Up @@ -22,7 +22,7 @@ MongoClient.connect(format("mongodb://%s:%s/node-mongo-examples?w=1", host, port
collection.find().each(function(err, item) {
if(item != null) {
console.dir(item);
console.log("created at " + new Date(item._id.generationTime) + "\n")
console.log("created at " + new Date(item._id.generationTime) + "\n");
}

// Null signifies end of iterator
Expand All @@ -36,4 +36,4 @@ MongoClient.connect(format("mongodb://%s:%s/node-mongo-examples?w=1", host, port
});
});
});
});
});

0 comments on commit cd154f1

Please sign in to comment.