Skip to content

Commit

Permalink
Continue documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
JASchilz committed Sep 6, 2016
1 parent a874c1c commit 707fde6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ Retrieving an instance from the database:
```
// Retrieve the author with id 4, then log their name
db.authors(4)
.get
.get()
.then(
function(author) {
console.log(author.getFirstName());
Expand All @@ -481,10 +481,10 @@ db.authors(4)
Deleting an instance from the database:
```
db.authors(4)
.delete
.delete()
.then(
function() {
console.log("Deleted an author."
console.log("Deleted an author.")
}
);
```
Expand Down

0 comments on commit 707fde6

Please sign in to comment.