From 80a2a12b7aedbcd509dce979bb02341170d1ad78 Mon Sep 17 00:00:00 2001 From: Peter Klotz Date: Sun, 11 Feb 2018 20:35:50 +0100 Subject: [PATCH] Fixed typo in exception text --- include/boost/regex/v4/match_results.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/v4/match_results.hpp b/include/boost/regex/v4/match_results.hpp index 92e488d2..6af46952 100644 --- a/include/boost/regex/v4/match_results.hpp +++ b/include/boost/regex/v4/match_results.hpp @@ -569,7 +569,7 @@ private: // static void raise_logic_error() { - std::logic_error e("Attempt to access an uninitialzed boost::match_results<> class."); + std::logic_error e("Attempt to access an uninitialized boost::match_results<> class."); boost::throw_exception(e); }