Commit ba3c32a8 authored by Andris Mednis's avatar Andris Mednis

Fix spelling: implementation

parent b8bea6dd
...@@ -103,7 +103,7 @@ void read_int(const void* data, uint64_t& storage) { ...@@ -103,7 +103,7 @@ void read_int(const void* data, uint64_t& storage) {
storage = first | (static_cast<uint64_t>(second) << sizeof(uint32_t)); storage = first | (static_cast<uint64_t>(second) << sizeof(uint32_t));
} }
// implemenation of our broker // implementation of our broker
behavior broker_impl(broker* self, connection_handle hdl, const actor& buddy) { behavior broker_impl(broker* self, connection_handle hdl, const actor& buddy) {
// we assume io_fsm manages a broker with exactly one connection, // we assume io_fsm manages a broker with exactly one connection,
// i.e., the connection ponted to by `hdl` // i.e., the connection ponted to by `hdl`
......
...@@ -273,7 +273,7 @@ CAF_TEST(single_timeout) { ...@@ -273,7 +273,7 @@ CAF_TEST(single_timeout) {
{ping_single3, "ping_single3"}}; {ping_single3, "ping_single3"}};
for (auto f : fs) { for (auto f : fs) {
bool had_timeout = false; bool had_timeout = false;
CAF_MESSAGE("test implemenation " << f.second); CAF_MESSAGE("test implementation " << f.second);
auto testee = sys.spawn(f.first, &had_timeout, auto testee = sys.spawn(f.first, &had_timeout,
sys.spawn<lazy_init>(pong)); sys.spawn<lazy_init>(pong));
CAF_REQUIRE_EQUAL(sched.jobs.size(), 1u); CAF_REQUIRE_EQUAL(sched.jobs.size(), 1u);
...@@ -296,7 +296,7 @@ CAF_TEST(nested_timeout) { ...@@ -296,7 +296,7 @@ CAF_TEST(nested_timeout) {
{ping_nested3, "ping_nested3"}}; {ping_nested3, "ping_nested3"}};
for (auto f : fs) { for (auto f : fs) {
bool had_timeout = false; bool had_timeout = false;
CAF_MESSAGE("test implemenation " << f.second); CAF_MESSAGE("test implementation " << f.second);
auto testee = sys.spawn(f.first, &had_timeout, auto testee = sys.spawn(f.first, &had_timeout,
sys.spawn<lazy_init>(pong)); sys.spawn<lazy_init>(pong));
CAF_REQUIRE_EQUAL(sched.jobs.size(), 1u); CAF_REQUIRE_EQUAL(sched.jobs.size(), 1u);
...@@ -325,7 +325,7 @@ CAF_TEST(multiplexed_timeout) { ...@@ -325,7 +325,7 @@ CAF_TEST(multiplexed_timeout) {
{ping_multiplexed3, "ping_multiplexed3"}}; {ping_multiplexed3, "ping_multiplexed3"}};
for (auto f : fs) { for (auto f : fs) {
bool had_timeout = false; bool had_timeout = false;
CAF_MESSAGE("test implemenation " << f.second); CAF_MESSAGE("test implementation " << f.second);
auto testee = sys.spawn(f.first, &had_timeout, auto testee = sys.spawn(f.first, &had_timeout,
sys.spawn<lazy_init>(pong)); sys.spawn<lazy_init>(pong));
CAF_REQUIRE_EQUAL(sched.jobs.size(), 1u); CAF_REQUIRE_EQUAL(sched.jobs.size(), 1u);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment