Skip to content

Commit fb2500b

Browse files
committed
Fix typos with codespell
1 parent 78dc1c2 commit fb2500b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/stop_token.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace exec = beman::execution26;
1919
// There are two different needs on how the cancallation is
2020
// indicated:
2121
// - Active work, e.g., doing a lengthy computation,
22-
// would occassionally check the results are still needed
22+
// would occasionally check the results are still needed
2323
// and abort the computation if it is not. To do so, the
2424
// function would use token.stop_requested() which yields
2525
// true once stopping was requested.

include/beman/execution26/detail/get_domain.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ struct get_domain_t {
1717
::std::forward<Object>(object).query(tag);
1818
}) && (not requires(Object&& object, const get_domain_t& tag) { ::std::as_const(object).query(tag); })
1919
auto
20-
operator()(Object&&) const noexcept = BEMAN_EXECUTION26_DELETE("object neeeds a query(get_domain_t) overload");
20+
operator()(Object&&) const noexcept = BEMAN_EXECUTION26_DELETE("object needs a query(get_domain_t) overload");
2121
template <typename Object>
2222
requires(not requires(Object&& object, const get_domain_t& tag) { ::std::as_const(object).query(tag); })
2323
auto

include/beman/execution26/detail/set_error.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// inclue/beman/execution26/detail/set_error.hpp -*-C++-*-
1+
// include/beman/execution26/detail/set_error.hpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
#ifndef INCLUDED_BEMAN_EXECUTION26_DETAIL_SET_ERROR

0 commit comments

Comments
 (0)