You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2016/02/23 18:51:29 UTC

mesos git commit: Fixed typos in subprocess.cpp comments.

Repository: mesos
Updated Branches:
  refs/heads/master 654b0df41 -> 1743ad4c2


Fixed typos in subprocess.cpp comments.

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


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

Branch: refs/heads/master
Commit: 1743ad4c2b3dbc3c6fd93e6ba4a31c8d71b295d1
Parents: 654b0df
Author: Joerg Schad <jo...@mesosphere.io>
Authored: Tue Feb 23 18:50:45 2016 +0100
Committer: Bernd Mathiske <be...@mesosphere.io>
Committed: Tue Feb 23 18:50:45 2016 +0100

----------------------------------------------------------------------
 3rdparty/libprocess/src/subprocess.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/1743ad4c/3rdparty/libprocess/src/subprocess.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/src/subprocess.cpp b/3rdparty/libprocess/src/subprocess.cpp
index 44ca6d0..16c327d 100644
--- a/3rdparty/libprocess/src/subprocess.cpp
+++ b/3rdparty/libprocess/src/subprocess.cpp
@@ -189,7 +189,7 @@ Subprocess::IO Subprocess::FD(int fd, IO::FDType type)
 
           // NOTE: By not setting a default we leverage the compiler
           // errors when the enumeration is augmented to find all
-          // the cases we need to provide.  Same for below.
+          // the cases we need to provide. Same for below.
         }
 
         if (prepared_fd == -1) {
@@ -239,7 +239,7 @@ static pid_t defaultClone(const lambda::function<int()>& func)
 
 
 // The main entry of the child process. Note that this function has to
-// be async singal safe.
+// be async signal safe.
 static int childMain(
     const string& path,
     char** argv,