From 948592f9b318d9ca434705cda70d7a08deed759f Mon Sep 17 00:00:00 2001 From: Thomas Madlener Date: Fri, 20 Sep 2024 09:12:27 +0200 Subject: [PATCH] Make comment more generic Co-authored-by: Juan Miguel Carceller <22276694+jmcarcell@users.noreply.github.com> --- src/GenericParameters.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GenericParameters.cc b/src/GenericParameters.cc index 932153e97..d78bd6cc7 100644 --- a/src/GenericParameters.cc +++ b/src/GenericParameters.cc @@ -17,7 +17,7 @@ GenericParameters::GenericParameters(const GenericParameters& other) : m_stringMtx(std::make_unique()), m_doubleMtx(std::make_unique()) { { - // acquire all four locks at once to make sure all four internal maps are + // acquire all locks at once to make sure all internal maps are // copied at the same "state" of the GenericParameters auto& intMtx = other.getMutex(); auto& floatMtx = other.getMutex();