mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
bug fixes, updated tests
This commit is contained in:
parent
3c858cff96
commit
6d6ae5d5c0
19 changed files with 1074 additions and 974 deletions
|
@ -589,9 +589,10 @@ impl IdentIds {
|
|||
)
|
||||
}
|
||||
}
|
||||
None => {
|
||||
Err(format!("Tried to update key in IdentIds ({:?}) but I could not find the key ({}).", self.by_ident, old_ident_name))
|
||||
}
|
||||
None => Err(format!(
|
||||
"Tried to update key in IdentIds ({:?}) but I could not find the key ({}).",
|
||||
self.by_ident, old_ident_name
|
||||
)),
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue