You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ji...@apache.org on 2016/07/26 20:25:34 UTC

mesos git commit: Correct typo when create docker container.

Repository: mesos
Updated Branches:
  refs/heads/master 65e394d1e -> fb78773c2


Correct typo when create docker container.

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


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

Branch: refs/heads/master
Commit: fb78773c2b029893ef2733371ccddfe107c1adb6
Parents: 65e394d
Author: Guangya Liu <gy...@gmail.com>
Authored: Tue Jul 26 13:25:18 2016 -0700
Committer: Jie Yu <yu...@gmail.com>
Committed: Tue Jul 26 13:25:18 2016 -0700

----------------------------------------------------------------------
 src/slave/containerizer/docker.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/fb78773c/src/slave/containerizer/docker.cpp
----------------------------------------------------------------------
diff --git a/src/slave/containerizer/docker.cpp b/src/slave/containerizer/docker.cpp
index aa0e5a5..12bad2d 100644
--- a/src/slave/containerizer/docker.cpp
+++ b/src/slave/containerizer/docker.cpp
@@ -286,7 +286,7 @@ DockerContainerizerProcess::Container::create(
   bool symlinked = false;
   string containerWorkdir = directory;
   // We need to symlink the sandbox directory if the directory
-  // path has a colon, as Docker CLI uses the colon as a seperator.
+  // path has a colon, as Docker CLI uses the colon as a separator.
   if (strings::contains(directory, ":")) {
     containerWorkdir = path::join(dockerSymlinkPath, id.value());