Skip to content

Commit

Permalink
chore/update-readme (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
tushararora authored Aug 26, 2017
1 parent 0c15a61 commit 620edc3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ API wrapper for getting trademark information from http://www.markerapi.com
## Install

```
$ npm install node-trademark
$ npm install node-trademark
```

## Node/OS Target
Expand All @@ -19,7 +19,7 @@ This repo is supposed to run fine on all major OS platforms and targets `Node.js
You will need to sign up on http://www.markerapi.com and use credentials in the form of a set of username and password. You can get these from your markerapi profile.

```js
const markerApi = require('')
const markerApi = require('node-trademark')
markerApi.init({
username: ''
password: ''
Expand Down Expand Up @@ -61,7 +61,7 @@ markerApi
### Test

```
npm test
npm test
```

## Issues
Expand Down
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ class MarkerApi {
._makeRequest(url)
.then((body) => {
/**
* body is returned as a string, that is
* why it is parsed as json
* body is received as a string, that is
* why it needs to be parsed as json
*/
let result
try {
Expand Down

0 comments on commit 620edc3

Please sign in to comment.