Skip to content

Commit

Permalink
Remove non-ASCII characters in doctest strings (#1602)
Browse files Browse the repository at this point in the history
* Fixed incorrect C in doctest string

* Fixed incorrect K in doctest string

---------

Co-authored-by: Dmitri Mokhov <[email protected]>
  • Loading branch information
vossmjp and dnmokhov authored Jan 14, 2025
1 parent f0985b1 commit ba98482
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/tbb/test_eh_thread.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2020-2023 Intel Corporation
Copyright (c) 2020-2025 Intel Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -94,7 +94,7 @@ TEST_CASE("Too many threads") {
return;
}

// Some systems set really big limit (e.g. >45К) for the number of processes/threads
// Some systems set really big limit (e.g. >45K) for the number of processes/threads
limitThreads(1);
if (getThreadLimit() == 1) {
for (int attempt = 0; attempt < 5; ++attempt) {
Expand Down
4 changes: 2 additions & 2 deletions test/tbb/test_parallel_for.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2005-2022 Intel Corporation
Copyright (c) 2005-2025 Intel Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -445,7 +445,7 @@ TEST_CASE("Various range implementations") {

//! Testing parallel_for with explicit task_group_context
//! \brief \ref interface \ref error_guessing
TEST_CASE("Сancellation test for tbb::parallel_for") {
TEST_CASE("Cancellation test for tbb::parallel_for") {
test_cancellation::ParallelForTestRunner</*FirstMode = */0>::run();
}

Expand Down

0 comments on commit ba98482

Please sign in to comment.