From 5b71e9a11203a417457c51dbe76a885070617710 Mon Sep 17 00:00:00 2001 From: Mikolaj Izdebski Date: Tue, 22 Jul 2025 15:37:08 +0200 Subject: [PATCH] Fix a typo in error message --- src/jurand.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jurand.cpp b/src/jurand.cpp index b1e986f..fc9d93a 100644 --- a/src/jurand.cpp +++ b/src/jurand.cpp @@ -161,7 +161,7 @@ Usage: jurand [optional flags] ... [file path]... if (auto& errors_unlocked = errors.lock().get(); not errors_unlocked.empty()) { exit_code = 2; - std::cout << "jurand: exceptions occured during the process:\n"; + std::cout << "jurand: exceptions occurred during the process:\n"; for (const auto& error : errors_unlocked) {