aboutsummaryrefslogtreecommitdiffstats
path: root/src/row.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/row.rs')
-rw-r--r--src/row.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/row.rs b/src/row.rs
index 4655f48..4511183 100644
--- a/src/row.rs
+++ b/src/row.rs
@@ -85,7 +85,7 @@ impl Row {
if cell.has_contents() {
// using write! here is significantly slower, for some reason
// write!(contents, "{}", cell.contents()).unwrap();
- contents.push_str(cell.contents());
+ contents.push_str(&cell.contents());
} else {
contents.push(' ');
}