From 3972322b91565a657175c4412235e016f0b9e317 Mon Sep 17 00:00:00 2001 From: Liangliang Nan Date: Mon, 23 Dec 2024 14:58:41 +0100 Subject: [PATCH] fixed a typo --- code/Example/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Example/main.cpp b/code/Example/main.cpp index 135a772..73ecaad 100644 --- a/code/Example/main.cpp +++ b/code/Example/main.cpp @@ -75,7 +75,7 @@ int main(int argc, char **argv) FaceSelection selector(pset, mesh); selector.optimize(adjacency, LinearProgramSolver::SCIP); if (mesh->size_of_facets() == 0) { - std::cerr << "optimization failed: model has on faces" << std::endl; + std::cerr << "optimization failed: model has no face" << std::endl; return EXIT_FAILURE; } // now we don't need the point cloud anymore, and it can be deleted