From cb1a1521f5ec52e6d64ed1da62f1d0dcfcac2fc2 Mon Sep 17 00:00:00 2001 From: Sam Vervaeck Date: Sun, 21 Jan 2024 03:40:24 +0100 Subject: [PATCH] Small fix to wording in output of 'bolt verify' --- bootstrap/cxx/src/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/cxx/src/main.cc b/bootstrap/cxx/src/main.cc index 1eb81c381..f77c2f4f0 100644 --- a/bootstrap/cxx/src/main.cc +++ b/bootstrap/cxx/src/main.cc @@ -158,7 +158,7 @@ int main(int Argc, const char* Argv[]) { auto Line = N->getStartLine(); auto Match = V1.Expected.find(Line); if (Match != V1.Expected.end() && Match->second == D->getCode()) { - std::cerr << "skipped 1 diagnostic" << std::endl; + std::cerr << "caught 1 diagnostic" << std::endl; continue; } }