Skip to content

Commit

Permalink
docs(readme): remove semi in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
lgaticaq committed Aug 6, 2017
1 parent 26ff9f5 commit 84a1c9d
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 @@ -20,15 +20,15 @@ npm i -S codigo-postal

[Try on Tonic](https://tonicdev.com/npm/codigo-postal)
```js
const codigoPostal = require('codigo-postal');
const codigoPostal = require('codigo-postal')

const data = {
address: 'avenida siempreviva',
number: 742,
commune: 'springfield'
};
}

codigoPostal(data).then(console.log);
codigoPostal(data).then(console.log)
```

Result:
Expand Down
4 changes: 2 additions & 2 deletions example.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
const codigoPostal = require('codigo-postal');
const codigoPostal = require('codigo-postal')

const data = {
address: 'avenida siempreviva',
number: 742,
commune: 'springfield'
};
}

const result = await codigoPostal(data)

0 comments on commit 84a1c9d

Please sign in to comment.