From 8ce195998a1577f6390cf85a887c70d6fc2f0685 Mon Sep 17 00:00:00 2001 From: Folkert Date: Tue, 23 Nov 2021 20:05:11 +0100 Subject: [PATCH] clean up comment --- reporting/src/report.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/reporting/src/report.rs b/reporting/src/report.rs index 190c96313d..13f4e29081 100644 --- a/reporting/src/report.rs +++ b/reporting/src/report.rs @@ -16,7 +16,6 @@ const CYCLE_ELEMENTS: [&str; 4] = ["+-----+", "| ", "| |", "+-<---+"]; #[cfg(not(windows))] const CYCLE_ELEMENTS: [&str; 4] = ["┌─────┐", "│ ", "│ ↓", "└─────┘"]; -// trick to branch in a const. Can be replaced by an if when that is merged into rustc const CYCLE_TOP: &str = CYCLE_ELEMENTS[0]; const CYCLE_LN: &str = CYCLE_ELEMENTS[1]; const CYCLE_MID: &str = CYCLE_ELEMENTS[2];