mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
minor cleanup
This commit is contained in:
parent
9aee7cdcf6
commit
6df2632157
2 changed files with 3 additions and 3 deletions
|
@ -32,7 +32,7 @@ fn expr2_to_string_helper(
|
|||
|
||||
match expr2 {
|
||||
Expr2::SmallStr(arr_string) => {
|
||||
let _ = write!(out_string, "SmallStr(\"{}\"", arr_string.as_str(),);
|
||||
let _ = write!(out_string, "SmallStr(\"{}\")", arr_string.as_str());
|
||||
}
|
||||
Expr2::Str(pool_str) => {
|
||||
let _ = write!(out_string, "Str(\"{}\")", pool_str.as_str(pool));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue