diff --git a/src/util/exception.cpp b/src/util/exception.cpp index 934ebe841f..944cad897f 100644 --- a/src/util/exception.cpp +++ b/src/util/exception.cpp @@ -49,7 +49,7 @@ char const * stack_space_exception::what() const noexcept { char const * memory_exception::what() const noexcept { std::string & buffer = get_g_buffer(); std::ostringstream s; - s << "excessive memory consumption detected at '" << m_component_name << "' (potential solution: increase memory consumption thresold)"; + s << "excessive memory consumption detected at '" << m_component_name << "' (potential solution: increase memory consumption threshold)"; buffer = s.str(); return buffer.c_str(); }