Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
lpgauth committed Aug 7, 2015
1 parent 00ed3a8 commit 5583c37
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 @@ -199,13 +199,13 @@ ok = shackle_pool:start(my_pool, my_client).

```erlang
1> shackle:call(my_pool, {get, <<"test">>}).
{ok,<<"bar">>}
{ok, <<"bar">>}

2> {ok, ReqId} = shackle:cast(my_pool, {get, <<"foo">>}).
{ok,{anchor,anchor_client,#Ref<0.0.0.2407>}}
{ok, {anchor, anchor_client, #Ref<0.0.0.2407>}}

3> shackle:receive_response(ReqId).
{ok,<<"bar">>}
{ok, <<"bar">>}
```

## Tests
Expand Down

0 comments on commit 5583c37

Please sign in to comment.