Skip to content

Commit

Permalink
Fix q() parameters in comment about usage
Browse files Browse the repository at this point in the history
  • Loading branch information
nacmartin committed Apr 29, 2015
1 parent f6900e2 commit 64dc362
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/eredis.erl
Expand Up @@ -3,8 +3,8 @@
%%
%% Usage:
%% {ok, Client} = eredis:start_link().
%% {ok, <<"OK">>} = eredis:q(["SET", "foo", "bar"]).
%% {ok, <<"bar">>} = eredis:q(["GET", "foo"]).
%% {ok, <<"OK">>} = eredis:q(Client, ["SET", "foo", "bar"]).
%% {ok, <<"bar">>} = eredis:q(Client, ["GET", "foo"]).

-module(eredis).
-include("eredis.hrl").
Expand Down

0 comments on commit 64dc362

Please sign in to comment.