From 5583c3747f4ad47e4b26b0710cca27185a1cd698 Mon Sep 17 00:00:00 2001 From: Louis-Philippe Gauthier Date: Fri, 7 Aug 2015 16:37:26 -0400 Subject: [PATCH] Update README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5f8a704..732c22c 100644 --- a/README.md +++ b/README.md @@ -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