Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Fixing typo for blogs object on API instance
Browse files Browse the repository at this point in the history
  • Loading branch information
hmschreiner committed Jan 9, 2017
1 parent f8e6895 commit 1aae879
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 @@ -64,7 +64,7 @@ Parameter | Description | Required | Default

**Usage:**
```javascript
api.blogs.getAllBlogs({
api.blog.getAllBlogs({
limit: 20,
offset: 0,
created: null,
Expand Down Expand Up @@ -98,7 +98,7 @@ Parameter | Description | Required | Default

**Usage:**
```javascript
api.blogs.getPosts({
api.blog.getPosts({
limit: 20,
offset: 0,
archived: false,
Expand All @@ -123,7 +123,7 @@ Get a specific blog post by ID.

**Usage:**
```javascript
api.blogs.getPostById(3198892953)
api.blog.getPostById(3198892953)
.then(response => console.log(response.data))
.catch(error => console.error(error))
```
Expand Down

0 comments on commit 1aae879

Please sign in to comment.