Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[KERNEL] Simple spelling fix
authorChristian Heinrich <franz-christian.heinrich@inria.fr>
Mon, 12 Feb 2018 16:31:40 +0000 (17:31 +0100)
committerChristian Heinrich <franz-christian.heinrich@inria.fr>
Tue, 13 Feb 2018 18:53:17 +0000 (19:53 +0100)
src/kernel/activity/ExecImpl.cpp

index 25dde5d..097947c 100644 (file)
@@ -50,7 +50,7 @@ double simgrid::kernel::activity::ExecImpl::remains()
 {
   xbt_assert(host_ != nullptr, "Calling remains() on a parallel execution is not allowed. "
                                "We would need to return a vector instead of a scalar. "
-                               "Did you meant remainingRatio() instead?");
+                               "Did you mean remainingRatio() instead?");
 
   return surfAction_ ? surfAction_->getRemains() : 0;
 }