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

@ -2371,7 +2371,7 @@ fn dict_intersection(symbol: Symbol, var_store: &mut VarStore) -> Def {
lowlevel_2(symbol, LowLevel::DictIntersection, var_store)
}
/// Dict.walk : Dict k v, (k, v, accum -> accum), accum -> accum
/// Dict.walk : Dict k v, state, (state, k, v -> state) -> state
fn dict_walk(symbol: Symbol, var_store: &mut VarStore) -> Def {
lowlevel_3(symbol, LowLevel::DictWalk, var_store)
}