aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/recaptcha.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/recaptcha.ex b/lib/recaptcha.ex
index 7090723..7ff1eb8 100644
--- a/lib/recaptcha.ex
+++ b/lib/recaptcha.ex
@@ -34,7 +34,7 @@ defmodule Recaptcha do
verify(:inet_parse.ntoa(remote_ip), response, options)
end
- def verify(remote_ip, nil = response, options), do: :error
+ def verify(_remote_ip, nil = _response, _options), do: :error
def verify(remote_ip, response, options) do
case api_response(remote_ip, response, options) do