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/11/24 16:38:59 UTC

mesos git commit: Fixed a minor typo in "linux/ns.hpp".

Repository: mesos
Updated Branches:
  refs/heads/master 826937e27 -> 27cb7606d


Fixed a minor typo in "linux/ns.hpp".


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

Branch: refs/heads/master
Commit: 27cb7606d648e5adfa5cfc6e1e8d0252eca1dab6
Parents: 826937e
Author: Alexander Rukletsov <al...@apache.org>
Authored: Thu Nov 24 17:29:36 2016 +0100
Committer: Alexander Rukletsov <al...@apache.org>
Committed: Thu Nov 24 17:39:01 2016 +0100

----------------------------------------------------------------------
 src/linux/ns.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/27cb7606/src/linux/ns.hpp
----------------------------------------------------------------------
diff --git a/src/linux/ns.hpp b/src/linux/ns.hpp
index 010a1fa..7778971 100644
--- a/src/linux/ns.hpp
+++ b/src/linux/ns.hpp
@@ -546,7 +546,7 @@ inline Try<pid_t> clone(
       // Need to reap the grandchild and then just exit since we're no
       // longer necessary. Technically when the grandchild exits it'll
       // be reaped but by doing a `waitpid` we can better propagate
-      // back any errors that might have occured with the grandchild.
+      // back any errors that might have occurred with the grandchild.
       int status;
       while (true) {
         if (waitpid(grandchild, &status, 0) == -1) {