Minor fixes

Signed-off-by: teo3300 <matteo.rogora@live.it>
This commit is contained in:
teo3300
2024-01-17 19:17:31 +09:00
parent 4f7140009d
commit 8d305cfd68

View File

@ -108,7 +108,7 @@ impl Reader {
} else if tk.starts_with(':') {
return Ok(Key(format!("ʞ{}", tk)));
}
return Ok(Sym(tk.to_string()));
Ok(Sym(tk.to_string()))
}
}
}