mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-02 16:21:11 +00:00
fix wrong tag name used in Dict.get
This commit is contained in:
parent
1c047fbc68
commit
02bc0036ab
1 changed files with 1 additions and 1 deletions
|
@ -2298,7 +2298,7 @@ fn dict_get(symbol: Symbol, var_store: &mut VarStore) -> Def {
|
||||||
|
|
||||||
let make_err = tag(
|
let make_err = tag(
|
||||||
"Err",
|
"Err",
|
||||||
vec![tag("OutOfBounds", Vec::new(), var_store)],
|
vec![tag("KeyNotFound", Vec::new(), var_store)],
|
||||||
var_store,
|
var_store,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue