You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by gy...@apache.org on 2017/02/06 09:59:06 UTC

mesos git commit: Fixed typo in master.hpp.

Repository: mesos
Updated Branches:
  refs/heads/master 6ee71154a -> 8f344119d


Fixed typo in master.hpp.


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

Branch: refs/heads/master
Commit: 8f344119db14b54243d2cd92a0e1d5c189ed92f5
Parents: 6ee7115
Author: Guangya Liu <gy...@gmail.com>
Authored: Mon Feb 6 17:58:52 2017 +0800
Committer: Guangya Liu <gy...@gmail.com>
Committed: Mon Feb 6 17:58:52 2017 +0800

----------------------------------------------------------------------
 src/master/master.hpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/8f344119/src/master/master.hpp
----------------------------------------------------------------------
diff --git a/src/master/master.hpp b/src/master/master.hpp
index ed50c27..ceb9bf7 100644
--- a/src/master/master.hpp
+++ b/src/master/master.hpp
@@ -1739,9 +1739,9 @@ private:
       ~Subscriber()
       {
         // TODO(anand): Refactor `HttpConnection` to being a RAII class instead.
-        // It is possible that a caller might accidentally nvoke `close()` after
-        // passing ownership to the `Subscriber` object. See MESOS-5843 for more
-        // details.
+        // It is possible that a caller might accidentally invoke `close()`
+        // after passing ownership to the `Subscriber` object. See MESOS-5843
+        // for more details.
         http.close();
       }