From ed5a0cae20b600606f455c478ee67eac479667f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffan=20S=C3=B8lvsten?= Date: Fri, 5 Jan 2024 15:32:22 +0100 Subject: [PATCH] Add missing whitespace in DOT output --- src/adiar/internal/algorithms/dot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/adiar/internal/algorithms/dot.h b/src/adiar/internal/algorithms/dot.h index 4ba222ecf..f3190d7dd 100644 --- a/src/adiar/internal/algorithms/dot.h +++ b/src/adiar/internal/algorithms/dot.h @@ -70,7 +70,7 @@ namespace adiar::internal out << "\tn" << node.uid()._raw << " -> " << "n" << node.high()._raw - << "[style=solid];" << "\n"; + << " [style=solid];" << "\n"; } out << "\n" << "\t// Ranks" << "\n";