Skip to content

Commit 129725a

Browse files
committed
Suppress minor warning (unused variable) in hash_dict.ex
1 parent e93613b commit 129725a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elixir/lib/hash_dict.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ defmodule HashDict do
127127
case dict_put(dict, key, { :update, nil, fun }) do
128128
{ dict, 0 } ->
129129
dict
130-
{ dict, 1 } ->
130+
{ _dict, 1 } ->
131131
raise KeyError, key: key
132132
end
133133
end

0 commit comments

Comments
 (0)