Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a couple of typos #27

Merged
merged 1 commit into from
Oct 9, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ The simplest stub you can do is

```erlang

bookih_spork:stub_request().
bookish_spork:stub_request().

```

Expand All @@ -79,7 +79,7 @@ If you need specify response you easily can do this:

```erlang

bookih_spork:stub_request(Status, Headers, Content).
bookish_spork:stub_request(Status, Headers, Content).

```

Expand Down Expand Up @@ -165,7 +165,7 @@ There are cases when the testee function initiates more than one request. But if

```erlang
bookish_spork:stub_request(200, <<"{\"value\": \"The first response\"}">>),
bookih_spork:stub_request(200, <<"{\"value\": \"The second response\"}">>).
bookish_spork:stub_request(200, <<"{\"value\": \"The second response\"}">>).

```

Expand Down