aboutsummaryrefslogtreecommitdiffstats
path: root/src/repr_latex.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/repr_latex.rs')
-rw-r--r--src/repr_latex.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/repr_latex.rs b/src/repr_latex.rs
index 51c9e7a..09bf549 100644
--- a/src/repr_latex.rs
+++ b/src/repr_latex.rs
@@ -53,7 +53,6 @@ r#"<tr><td>\({name}\)</td>
d.clone() }
else { "".to_string() }));
}
- let rows = rows.join("\n");
Ok(format!(
r#"<table>
<tr><th>Variable
@@ -64,7 +63,7 @@ r#"<table>
</tr>
{rows}
</table>"#,
- rows = rows.join("\n "))
+ rows = rows.join("\n ")))
}
}