mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 23:04:49 +00:00
fix typo
This commit is contained in:
parent
31e1fe8870
commit
5282dbf41a
2 changed files with 3 additions and 2 deletions
|
@ -116,9 +116,10 @@ pub fn gen_from_mono_module(
|
||||||
}
|
}
|
||||||
|
|
||||||
if name.starts_with("roc_builtins.dict")
|
if name.starts_with("roc_builtins.dict")
|
||||||
|| name.starts_with("dict.RocDict")
|
|
||||||
|| name.starts_with("roc_builtins.list")
|
|| name.starts_with("roc_builtins.list")
|
||||||
|
|| name.starts_with("roc_builtins.dec")
|
||||||
|| name.starts_with("list.RocList")
|
|| name.starts_with("list.RocList")
|
||||||
|
|| name.starts_with("dict.RocDict")
|
||||||
{
|
{
|
||||||
function.add_attribute(AttributeLoc::Function, enum_attr);
|
function.add_attribute(AttributeLoc::Function, enum_attr);
|
||||||
}
|
}
|
||||||
|
|
|
@ -775,7 +775,7 @@ define_builtins! {
|
||||||
// a caller (wrapper) for comparison
|
// a caller (wrapper) for comparison
|
||||||
21 GENERIC_COMPARE_REF: "#generic_compare_ref"
|
21 GENERIC_COMPARE_REF: "#generic_compare_ref"
|
||||||
|
|
||||||
// used to initialize paramters in borrow.rs
|
// used to initialize parameters in borrow.rs
|
||||||
22 EMPTY_PARAM: "#empty_param"
|
22 EMPTY_PARAM: "#empty_param"
|
||||||
}
|
}
|
||||||
1 NUM: "Num" => {
|
1 NUM: "Num" => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue