Unverified Commit 6654fce3 authored by Dominik Charousset's avatar Dominik Charousset Committed by GitHub

Merge pull request #825

fix a couple of typos
parents e46eeb9b 468a86a4
......@@ -27,7 +27,7 @@ forwarded to the default handler \see{default-handler}.
\begin{lstlisting}
message_handler x2{
[](double db) { /*...*/ },
[](double db) { /* - unrachable - */ }
[](double db) { /* - unreachable - */ }
};
\end{lstlisting}
......
......@@ -143,7 +143,7 @@ scheduled_actor::scheduled_actor(actor_config& cfg)
scheduled_actor::~scheduled_actor() {
// signalize to the private thread object that it is
// unrachable and can be destroyed as well
// unreachable and can be destroyed as well
if (private_thread_ != nullptr)
private_thread_->notify_self_destroyed();
}
......
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