Skip to content

Commit 620edc3

Browse files
authored
chore/update-readme (#10)
1 parent 0c15a61 commit 620edc3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ API wrapper for getting trademark information from http://www.markerapi.com
77
## Install
88

99
```
10-
$ npm install node-trademark
10+
$ npm install node-trademark
1111
```
1212

1313
## Node/OS Target
@@ -19,7 +19,7 @@ This repo is supposed to run fine on all major OS platforms and targets `Node.js
1919
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.
2020

2121
```js
22-
const markerApi = require('')
22+
const markerApi = require('node-trademark')
2323
markerApi.init({
2424
username: ''
2525
password: ''
@@ -61,7 +61,7 @@ markerApi
6161
### Test
6262

6363
```
64-
npm test
64+
npm test
6565
```
6666

6767
## Issues

src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ class MarkerApi {
119119
._makeRequest(url)
120120
.then((body) => {
121121
/**
122-
* body is returned as a string, that is
123-
* why it is parsed as json
122+
* body is received as a string, that is
123+
* why it needs to be parsed as json
124124
*/
125125
let result
126126
try {

0 commit comments

Comments
 (0)