Skip to content

Commit a4f9296

Browse files
committed
Merge #224: doc: fix typos
1434642 doc: fix typos (fanquake) Pull request description: Pointed out by the AI here: bitcoin/bitcoin#33518 (comment). ACKs for top commit: maflcko: lgtm ACK 1434642 ryanofsky: Code review ACK 1434642. No idea how you are this fast. Thanks for the update! Tree-SHA512: 41bf27034a80d7cbfb0d109bafd976b7c004a380f591cb65a5004be54b7703399273cd9da25e8ec6402f18244abd56601c24820a072f3ac2edf41395371d3f8d
2 parents f4344ae + 1434642 commit a4f9296

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/mp/test/test.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -309,14 +309,14 @@ KJ_TEST("Calling IPC method, disconnecting and blocking during the call")
309309
signal.set_value();
310310
}
311311

312-
KJ_TEST("Make simultaneous IPC callbacks with same request_thread and callback_thread")
312+
KJ_TEST("Make simultaneous IPC calls to trigger 'thread busy' error")
313313
{
314314
TestSetup setup;
315315
ProxyClient<messages::FooInterface>* foo = setup.client.get();
316316
std::promise<void> signal;
317317

318318
foo->initThreadMap();
319-
// Use callFnAsync() to get the client to setup the request_thread
319+
// Use callFnAsync() to get the client to set up the request_thread
320320
// that will be used for the test.
321321
setup.server->m_impl->m_fn = [&] {};
322322
foo->callFnAsync();
@@ -341,7 +341,7 @@ KJ_TEST("Make simultaneous IPC callbacks with same request_thread and callback_t
341341

342342
auto client{foo->m_client};
343343
bool caught_thread_busy = false;
344-
// NOTE: '3' was choosen because it was the lowest number
344+
// NOTE: '3' was chosen because it was the lowest number
345345
// of simultaneous calls required to reliably catch a "thread busy" error
346346
std::atomic<size_t> running{3};
347347
foo->m_context.loop->sync([&]

0 commit comments

Comments
 (0)