Skip to content

Commit 1691d42

Browse files
rjdelleceselpil
authored andcommitted
Add leading underscore to unused Erlang arg
1 parent 7bc75a2 commit 1691d42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gleam_stdlib.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ decode_element(Data, Position) when is_tuple(Data) ->
7878
Value ->
7979
{ok, Value}
8080
end;
81-
decode_element(Data, Position) -> decode_error_msg("a Tuple", Data).
81+
decode_element(Data, _Position) -> decode_error_msg("a Tuple", Data).
8282

8383
parse_int(String) ->
8484
case string:to_integer(binary:bin_to_list(String)) of

0 commit comments

Comments
 (0)