From c01a295e0864defb0253274d79839b58e3572da3 Mon Sep 17 00:00:00 2001 From: Takashi Takebayashi Date: Fri, 27 Jun 2025 22:10:50 +0900 Subject: [PATCH] Fix typo: exeception -> exception --- .../CPP/exception-handling-in-the-concurrency-runtime_6.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/parallel/concrt/codesnippet/CPP/exception-handling-in-the-concurrency-runtime_6.cpp b/docs/parallel/concrt/codesnippet/CPP/exception-handling-in-the-concurrency-runtime_6.cpp index ca2b028026..516134985e 100644 --- a/docs/parallel/concrt/codesnippet/CPP/exception-handling-in-the-concurrency-runtime_6.cpp +++ b/docs/parallel/concrt/codesnippet/CPP/exception-handling-in-the-concurrency-runtime_6.cpp @@ -18,7 +18,7 @@ int wmain() { parallel_for(-5, 20, [min,max](int i) { - // Throw an exeception if the input value is less than the + // Throw an exception if the input value is less than the // minimum or greater than the maximum. // Otherwise, print the value to the console.