mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +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));
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use std::fmt::Write as _;
|
||||
use std::path::PathBuf; // import without risk of name clashing
|
||||
use std::fmt::Write as _; // import without risk of name clashing
|
||||
use std::path::PathBuf;
|
||||
|
||||
use bumpalo::Bump;
|
||||
use ven_pretty::DocAllocator;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue