summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.rs b/src/map.rs
index b592fbd..3fe1e12 100644
--- a/src/map.rs
+++ b/src/map.rs
@@ -171,7 +171,7 @@ impl Roadmap {
format!(
"{} [label=\"{}\" style=filled fillcolor=\"{}\" shape=\"{}\"];\n",
step.name(),
- fill(step.label(), label_width).replace("\n", "\\n"),
+ fill(step.label(), label_width).replace('\n', "\\n"),
Roadmap::get_status_color(step),
Roadmap::get_status_shape(step),
)