Remove unnecessary & ref

This commit is contained in:
Agus Zubiaga 2024-05-05 17:08:34 -03:00
parent 3c52edd0a0
commit 4b8b36529d
No known key found for this signature in database

View File

@ -285,7 +285,7 @@ impl<'a> Formattable for IngestedFileImport<'a> {
fmt_str_literal(buf, path.value, indent);
name.keyword.format(buf, indent);
buf.push_str(&name.item.value);
buf.push_str(name.item.value);
annotation.format(buf, indent);
}