diff options
Diffstat (limited to 'gen/src/gleam@any.erl')
-rw-r--r-- | gen/src/gleam@any.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gen/src/gleam@any.erl b/gen/src/gleam@any.erl index b55ce9f..9f2a8e6 100644 --- a/gen/src/gleam@any.erl +++ b/gen/src/gleam@any.erl @@ -30,10 +30,10 @@ thunk(A) -> list_any(A) -> gleam_stdlib:decode_list(A). -list(Any, Decode) -> +list(Any, DecoderType) -> gleam@result:then( list_any(Any), - fun(Capture1) -> gleam@list:traverse(Capture1, Decode) end + fun(Capture1) -> gleam@list:traverse(Capture1, DecoderType) end ). pair(A) -> |