Skip to content

Commit 85ba2f3

Browse files
inoaslpil
authored andcommitted
names, cs
1 parent e7ddb5b commit 85ba2f3

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/gleam_stdlib.erl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,6 @@ inspect(Any) when is_function(Any) ->
377377
inspect(Any) ->
378378
["//erl(", io_lib:format("~p", [Any]), ")"].
379379

380-
381380
inspect_list([]) ->
382381
{proper, []};
383382
inspect_list([Head]) ->

test/gleam/string_test.gleam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -801,7 +801,7 @@ if erlang {
801801
external fn improper_list_append(
802802
item_a,
803803
item_b,
804-
improper_item,
804+
improper_tail,
805805
) -> List(anything) =
806806
"gleam_stdlib_test_ffi" "improper_list_append"
807807
}

test/gleam_stdlib_test_ffi.erl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ should_be_error(A) ->
3939
?assertMatch({error, _}, A),
4040
nil.
4141

42-
improper_list_append(ItemA, ItemB, ImproperItem) ->
43-
[ItemA, ItemB | ImproperItem].
42+
improper_list_append(ItemA, ItemB, ImproperTail) ->
43+
[ItemA, ItemB | ImproperTail].

0 commit comments

Comments
 (0)