diff --git a/.gitignore b/.gitignore index 36268df3..b06650f4 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,5 @@ ebin/* *~ Emakefile .rebar +.DS_Store +doc diff --git a/src/eredis.erl b/src/eredis.erl index 7e4f0032..79b451b1 100644 --- a/src/eredis.erl +++ b/src/eredis.erl @@ -97,9 +97,8 @@ qp(Client, Pipeline, Timeout) -> pipeline(Client, Pipeline, Timeout). -spec q_noreply(Client::client(), Command::[any()]) -> ok. -%% @doc +%% @doc Executes the command but does not wait for a response and ignores any errors. %% @see q/2 -%% Executes the command but does not wait for a response and ignores any errors. q_noreply(Client, Command) -> cast(Client, Command).