diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam_stdlib.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gleam_stdlib.erl b/src/gleam_stdlib.erl index e71c1e5..dc3727c 100644 --- a/src/gleam_stdlib.erl +++ b/src/gleam_stdlib.erl @@ -351,7 +351,7 @@ inspect(Binary) when is_binary(Binary) -> inspect(List) when is_list(List) -> case inspect_list(List) of {proper, Elements} -> ["[", Elements, "]"]; - {improper, Elements} -> ["//erl[", Elements, "]"] + {improper, Elements} -> ["//erl([", Elements, "])"] end; inspect(Any) when is_tuple(Any) % Record constructors andalso is_atom(element(1, Any)) |