Skip to content

Commit

Permalink
docs: remove empty spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardLitt authored and gr2m committed Sep 28, 2018
1 parent 6b632d5 commit 7498574
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 @@ -3,8 +3,8 @@
[![Build Status](https://travis-ci.org/nock/nock.svg?branch=master)](https://travis-ci.org/nock/nock)
[![Coverage Status](https://coveralls.io/repos/github/nock/nock/badge.svg?branch=master)](https://coveralls.io/github/nock/nock?branch=master)
[![Greenkeeper](https://badges.greenkeeper.io/nock/nock.svg)](https://greenkeeper.io/)
[![Backers on Open Collective](https://opencollective.com/nock/backers/badge.svg)](#backers)
[![Sponsors on Open Collective](https://opencollective.com/nock/sponsors/badge.svg)](#sponsors)
[![Backers on Open Collective](https://opencollective.com/nock/backers/badge.svg)](#backers)
[![Sponsors on Open Collective](https://opencollective.com/nock/sponsors/badge.svg)](#sponsors)

> HTTP server mocking and expectations library for Node.js
Expand Down Expand Up @@ -237,7 +237,7 @@ nock('https://www.example.com')

```js
nock('https://www.example.com')
.post('/login', function(body) {
.post('/login', function(body) {
return body.username && body.password;
})
.reply(200, { id: '123ABC' });
Expand Down

0 comments on commit 7498574

Please sign in to comment.