@@ -103,7 +103,7 @@ namespace hpx::parallel::execution {
103103 // / \returns f(ts...)'s result
104104 // /
105105 // / \note It will call tag_invoke(sync_execute_t, exec, f, ts...) if it
106- // / exists. For two-way executors it will invoke asynch_execute_t
106+ // / exists. For two-way executors it will invoke async_execute_t
107107 // / and wait for the task's completion before returning.
108108 // /
109109 HPX_CXX_EXPORT inline constexpr struct sync_execute_t final
@@ -148,7 +148,7 @@ namespace hpx::parallel::execution {
148148 // /
149149 // / \note This is valid for one way executors (calls
150150 // / make_ready_future(exec.sync_execute(f, ts...) if it exists)
151- // / and for two way executors (calls exec.async_execute(f, ts...)
151+ // / and for two- way executors (calls exec.async_execute(f, ts...)
152152 // / if it exists).
153153 // /
154154 // / \returns f(ts...)'s result through a future
@@ -188,7 +188,7 @@ namespace hpx::parallel::execution {
188188 // /
189189 // / \returns f(ts...)'s result through a future
190190 // /
191- // / \note This is valid for two way executors (calls
191+ // / \note This is valid for two- way executors (calls
192192 // / exec.then_execute(f, predecessor, ts...) if it exists) and
193193 // / for one way executors (calls predecessor.then(bind(f, ts...))).
194194 // /
@@ -227,10 +227,10 @@ namespace hpx::parallel::execution {
227227 // / given executor.
228228 // / \param ts [in] Additional arguments to use to invoke \a f.
229229 // /
230- // / \note This is valid for two way executors (calls
230+ // / \note This is valid for two- way executors (calls
231231 // / exec.post(f, ts...), if available, otherwise
232232 // / it calls exec.async_execute(f, ts...) while discarding the
233- // / returned future), and for non-blocking two way executors
233+ // / returned future), and for non-blocking two- way executors
234234 // / (calls exec.post(f, ts...) if it exists).
235235 // /
236236 HPX_CXX_EXPORT inline constexpr struct post_t final
@@ -283,7 +283,7 @@ namespace hpx::parallel::execution {
283283 // / \param ts [in] Additional arguments to use to invoke \a f.
284284 // /
285285 // / \returns The return type of \a executor_type::bulk_sync_execute
286- // / if defined by \a executor_type. Otherwise a vector holding
286+ // / if defined by \a executor_type. Otherwise, a vector holding
287287 // / the returned values of each invocation of \a f except when
288288 // / \a f returns void, which case void is returned.
289289 // /
@@ -352,7 +352,7 @@ namespace hpx::parallel::execution {
352352 // / \param ts [in] Additional arguments to use to invoke \a f.
353353 // /
354354 // / \returns The return type of \a executor_type::bulk_async_execute if
355- // / defined by \a executor_type. Otherwise a vector
355+ // / defined by \a executor_type. Otherwise, a vector
356356 // / of futures holding the returned values of each invocation
357357 // / of \a f.
358358 // /
@@ -423,7 +423,7 @@ namespace hpx::parallel::execution {
423423 // / \param ts [in] Additional arguments to use to invoke \a f.
424424 // /
425425 // / \returns The return type of \a executor_type::bulk_then_execute
426- // / if defined by \a executor_type. Otherwise a vector holding
426+ // / if defined by \a executor_type. Otherwise, a vector holding
427427 // / the returned values of each invocation of \a f.
428428 // /
429429 // / \note This calls exec.bulk_then_execute(f, shape, pred, ts...) if it
@@ -489,7 +489,7 @@ namespace hpx::parallel::execution {
489489 // / given executor.
490490 // /
491491 // / \returns The return type of \a executor_type::async_invoke if defined by
492- // / \a executor_type. Otherwise a future<void>
492+ // / \a executor_type. Otherwise, a future<void>
493493 // / representing finishing the execution of all functions \a fs.
494494 // /
495495 // / \note This calls exec.async_invoke(fs...) if it exists; otherwise it
0 commit comments