From 1e481209d65dc58d85590e063f21108b84b96588 Mon Sep 17 00:00:00 2001 From: Pierre Anquez Date: Fri, 15 Aug 2025 11:02:18 +0200 Subject: [PATCH] fix(Logger): fix some typos in output messages --- src/geode/inspector/topology/brep_lines_topology.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/geode/inspector/topology/brep_lines_topology.cpp b/src/geode/inspector/topology/brep_lines_topology.cpp index 95908c97..fc0a58d6 100644 --- a/src/geode/inspector/topology/brep_lines_topology.cpp +++ b/src/geode/inspector/topology/brep_lines_topology.cpp @@ -308,7 +308,7 @@ namespace geode cmv.component_id.id().string(), "', which should be boundary of " "surface with uuid '", - incident_surface.id().string() ); + incident_surface.id().string(), "'" ); } const auto& surface_edges = cme.surface_edges.at( incident_surface.id() ); @@ -319,7 +319,7 @@ namespace geode cmv.component_id.id().string(), "', which should not be boundary of " "surface with uuid '", - incident_surface.id().string() ); + incident_surface.id().string(), "'" ); } } for( const auto& embedding_surface : brep_.embedding_surfaces( @@ -330,9 +330,9 @@ namespace geode return absl::StrCat( "Unique vertex with index ", unique_vertex_index, " is part of line with uuid '", cmv.component_id.id().string(), - "', which should not be embedded in " + "', which should be embedded in " "surface with uuid '", - embedding_surface.id().string() ); + embedding_surface.id().string(), "'" ); } const auto& surface_edges = cme.surface_edges.at( embedding_surface.id() ); @@ -343,7 +343,7 @@ namespace geode cmv.component_id.id().string(), "', which should not be embedded in " "surface with uuid '", - embedding_surface.id().string() ); + embedding_surface.id().string(), "'" ); } } if( brep_.nb_incidences( cmv.component_id.id() ) < 1