test/stdcxx: spelling fix

This commit is contained in:
Norman Feske 2016-11-23 12:00:42 +01:00 committed by Christian Helmuth
parent 5f0008cbc9
commit 7f78d182f8
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ static void test_stdexcept()
try {
throw std::invalid_argument("INVALID");
} catch (std::invalid_argument) {
std::cout << "catched std::invalid_argument"<< std::endl;
std::cout << "caught std::invalid_argument"<< std::endl;
}
}