Skip to content

Commit 12f113f

Browse files
author
José Valim
committed
Merge pull request #1860 from jwarwick/warnings
Fixed warning message.
2 parents a6bcb01 + c136754 commit 12f113f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* [Mix] Ensure umbrella apps run in the same environment as the parent project
1212
* [Mix] Ensure dependency tree is topsorted before compiling
1313
* [Mix] Raise error when duplicated projects are pushed into the stack
14-
* [URI] Allow lower case escapes in URI
14+
* [URI] Allow lowercase escapes in URI
1515

1616
* Deprecations
1717

lib/elixir/src/elixir_dispatch.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ remote_function(Meta, Receiver, Name, Arity, S) ->
341341

342342
%% ERROR HANDLING
343343

344-
format_error({ unrequired_module, { Receiver, Name, Arity, Required }}) ->
344+
format_error({ unrequired_module, { Receiver, Name, Arity, _Required }}) ->
345345
Module = elixir_errors:inspect(Receiver),
346346
io_lib:format("you must require ~ts before invoking the macro ~ts.~ts/~B",
347347
[Module, Module, Name, Arity]);

0 commit comments

Comments
 (0)