You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by al...@apache.org on 2016/03/29 14:01:34 UTC

mesos git commit: Fixed a typo in "future.hpp".

Repository: mesos
Updated Branches:
  refs/heads/master 299f07a4e -> d002ae2b1


Fixed a typo in "future.hpp".

Review: https://reviews.apache.org/r/45424/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/d002ae2b
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/d002ae2b
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/d002ae2b

Branch: refs/heads/master
Commit: d002ae2b1606113b4c8d69d3b0190715353b8520
Parents: 299f07a
Author: Alexander Rukletsov <ru...@gmail.com>
Authored: Tue Mar 29 13:59:45 2016 +0200
Committer: Alexander Rukletsov <al...@apache.org>
Committed: Tue Mar 29 13:59:45 2016 +0200

----------------------------------------------------------------------
 3rdparty/libprocess/include/process/future.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/d002ae2b/3rdparty/libprocess/include/process/future.hpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/include/process/future.hpp b/3rdparty/libprocess/include/process/future.hpp
index 2531fa9..ae4f2d6 100644
--- a/3rdparty/libprocess/include/process/future.hpp
+++ b/3rdparty/libprocess/include/process/future.hpp
@@ -1413,7 +1413,7 @@ bool Future<T>::set(const T& _t)
 
   // Invoke all callbacks associated with this future being READY. We
   // don't need a lock because the state is now in READY so there
-  // should not be any concurrent modications.
+  // should not be any concurrent modifications.
   if (result) {
     internal::run(data->onReadyCallbacks, data->result.get());
     internal::run(data->onAnyCallbacks, *this);
@@ -1440,7 +1440,7 @@ bool Future<T>::fail(const std::string& _message)
 
   // Invoke all callbacks associated with this future being FAILED. We
   // don't need a lock because the state is now in FAILED so there
-  // should not be any concurrent modications.
+  // should not be any concurrent modifications.
   if (result) {
     internal::run(data->onFailedCallbacks, data->result.error());
     internal::run(data->onAnyCallbacks, *this);