Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Correct a few a/an.
[simgrid.git] / include / simgrid / simix / blocking_simcall.hpp
index 2bccf68..28f33ef 100644 (file)
@@ -155,7 +155,7 @@ template <class F> auto kernel_async(F code) -> Future<decltype(code().get())>
   // Execute the code in the kernel and get the kernel future:
   simgrid::kernel::Future<T> future = simgrid::kernel::actor::simcall(std::move(code));
 
-  // Wrap the kernel future in a actor future:
+  // Wrap the kernel future in an actor future:
   return simgrid::simix::Future<T>(std::move(future));
 }
 }