diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/gleam/list.gleam | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gleam/list.gleam b/src/gleam/list.gleam index 91d6cf4..a5cffa9 100644 --- a/src/gleam/list.gleam +++ b/src/gleam/list.gleam @@ -2119,7 +2119,6 @@ fn do_shuffle_pair_unwrap(list: List(#(Float, a)), acc: List(a)) -> List(a) { [] -> acc [elem_pair, ..enumerable] -> do_shuffle_pair_unwrap(enumerable, [elem_pair.1, ..acc]) - } } } |