Repository: mesos Updated Branches: refs/heads/master 4b9ea1ebe -> 03a4c596d
Fixed style issues in slave/flags.hpp. Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/03a4c596 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/03a4c596 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/03a4c596 Branch: refs/heads/master Commit: 03a4c596d39dbb51b1bde1cd1c0c213ce985c98c Parents: 4b9ea1e Author: Vinod Kone <[email protected]> Authored: Thu Aug 14 17:51:53 2014 -0700 Committer: Vinod Kone <[email protected]> Committed: Thu Aug 14 17:51:53 2014 -0700 ---------------------------------------------------------------------- src/slave/flags.hpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/03a4c596/src/slave/flags.hpp ---------------------------------------------------------------------- diff --git a/src/slave/flags.hpp b/src/slave/flags.hpp index 44ad632..a4ddeb1 100644 --- a/src/slave/flags.hpp +++ b/src/slave/flags.hpp @@ -282,17 +282,18 @@ public: add(&Flags::default_container_image, "default_container_image", "The default container image to use if not specified by a task,\n" - "when using external containerizer"); + "when using external containerizer.\n"); add(&Flags::docker, "docker", - "The absolute path to the docker executable for docker containerizer.", + "The absolute path to the docker executable for docker\n" + "containerizer.\n", "docker"); add(&Flags::docker_sandbox_directory, "docker_sandbox_directory", - "The absolute path for the directory in the container where the sandbox\n" - "is mapped to", + "The absolute path for the directory in the container where the\n" + "sandbox is mapped to.\n", "/mnt/mesos/sandbox"); #ifdef WITH_NETWORK_ISOLATOR
