Skip to content

Commit

Permalink
Fix inshpect/spelling violations
Browse files Browse the repository at this point in the history
  • Loading branch information
biddisco committed Jul 1, 2024
1 parent f50d739 commit dd7b2d6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ namespace pika::mpi::experimental {
}
// inline, can we skip any steps?
if (request == MPI_REQUEST_NULL) { return just(); }
if (inline_ready(mode)) // the completion mode does not requre a transfer
if (inline_ready(mode)) // the completion mode does not require a transfer
{
return just(request) | trigger_mpi(mode); //
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
#include <pika/threading_base/thread_data.hpp>
#include <pika/threading_base/thread_description.hpp>

#include <atomic>
#include <cstddef>
#include <cstdint>
#include <exception>
#include <string>
#include <type_traits>
Expand All @@ -48,7 +50,7 @@ namespace pika { namespace execution { namespace experimental {
using thread_pool_scheduler::operator==;
using thread_pool_scheduler::operator!=;

// Since this scheduler executes the task immmediately on whichever thread is active
// Since this scheduler executes the task immediately on whichever thread is active
// we do not support "with_priority" property
// we do not support "with_hint" property

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include <pika/config.hpp>
#include <pika/debugging/print.hpp>

#include <cstddef>
#include <iosfwd>

namespace pika::threads::detail {
Expand Down
1 change: 1 addition & 0 deletions libs/pika/threading_base/src/print.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include <pika/threading_base/scheduler_base.hpp>
#include <pika/threading_base/thread_data.hpp>

#include <cstddef>
#include <cstdint>
#include <thread>

Expand Down

0 comments on commit dd7b2d6

Please sign in to comment.