mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 06:14:46 +00:00
typos
This commit is contained in:
parent
46beaf5855
commit
e805e63db6
20 changed files with 31 additions and 31 deletions
|
@ -35,9 +35,9 @@ pub fn make_tail_recursive<'a>(
|
|||
stmt: Stmt<'a>,
|
||||
args: &'a [(Layout<'a>, Symbol)],
|
||||
) -> Stmt<'a> {
|
||||
let alloced = arena.alloc(stmt);
|
||||
match insert_jumps(arena, alloced, id, needle) {
|
||||
None => alloced.clone(),
|
||||
let allocated = arena.alloc(stmt);
|
||||
match insert_jumps(arena, allocated, id, needle) {
|
||||
None => allocated.clone(),
|
||||
Some(new) => {
|
||||
// jumps were inserted, we must now add a join point
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue