From a8da74e31f903507e73c904ac1d2164cc767665d Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Thu, 29 Aug 2024 12:24:51 -0400 Subject: [PATCH] fix: correct a typo in a printout in the BinningData.hpp --- Core/include/Acts/Utilities/BinningData.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/include/Acts/Utilities/BinningData.hpp b/Core/include/Acts/Utilities/BinningData.hpp index 9ad848ba152..ed8668a3aca 100644 --- a/Core/include/Acts/Utilities/BinningData.hpp +++ b/Core/include/Acts/Utilities/BinningData.hpp @@ -533,7 +533,7 @@ class BinningData { /// @return a string containing the screen information std::string toString(const std::string& indent = "") const { std::stringstream sl; - sl << indent << "BinngingData object:" << '\n'; + sl << indent << "BinningData object:" << '\n'; sl << indent << " - type : " << static_cast(type) << '\n'; sl << indent << " - option : " << static_cast(option)