diff options
Diffstat (limited to 'src/list.gleam')
-rw-r--r-- | src/list.gleam | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/list.gleam b/src/list.gleam index 871c980..027afd6 100644 --- a/src/list.gleam +++ b/src/list.gleam @@ -16,7 +16,7 @@ test length { // Using the Erlang C BIF implementation. // -pub external fn reverse(List(a)) -> List(a) = "erlang" "reverse" +pub external fn reverse(List(a)) -> List(a) = "lists" "reverse" test reverse { let _ = length([]) |> expect:equal(_, 0) |