Update Dict.walk to match List.walk

This commit is contained in:
Richard Feldman 2021-08-30 23:04:49 -04:00
parent 91165e1230
commit 71a678c092
3 changed files with 5 additions and 5 deletions

View file

@ -502,7 +502,7 @@ fn walk_sum_keys() {
|> Dict.insert 4 4
|> Dict.insert 5 5
Dict.walk dict1 (\k, _, a -> k + a) 0
Dict.walk dict1 0 \k, _, a -> k + a
"#
),
15,