From fee2b002fc0bb0dfe051027229c0e9bb23268f80 Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Mon, 27 Apr 2015 12:02:04 -0700 Subject: [PATCH] fix(util/exception): typo in error message --- src/util/exception.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }