Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Cosmetics in ActorImpl
[simgrid.git] / src / kernel / context / ContextThread.cpp
index f7914a6..488e53f 100644 (file)
@@ -66,7 +66,7 @@ ThreadContext::ThreadContext(std::function<void()>&& code, actor::ActorImpl* act
   if (has_code()) {
     /* create and start the actor */
     this->thread_ = new std::thread(ThreadContext::wrapper, this);
-    /* wait the starting of the newly created actor */
+    /* wait the start of the newly created actor */
     this->end_.acquire();
   }