From 5ce81385eedfe4372c4bc42d47b97ea7002ebc72 Mon Sep 17 00:00:00 2001 From: Attila Krasznahorkay Date: Sun, 5 May 2024 10:13:21 +0200 Subject: [PATCH] Fixed a typo in the CMDL printout. --- examples/options/src/detector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/options/src/detector.cpp b/examples/options/src/detector.cpp index 0461e621a..6f47c9a61 100644 --- a/examples/options/src/detector.cpp +++ b/examples/options/src/detector.cpp @@ -41,7 +41,7 @@ std::ostream& detector::print_impl(std::ostream& out) const { out << " Detector file : " << detector_file << "\n" << " Material file : " << material_file << "\n" - << " Surface rid file : " << grid_file << "\n" + << " Surface grid file : " << grid_file << "\n" << " Use detray::detector: " << (use_detray_detector ? "yes" : "no") << "\n" << " Digitization file : " << digitization_file;