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 2011/06/05 08:41:15 UTC

svn commit: r1131952 - /incubator/mesos/trunk/src/get_conf.cpp

Author: benh
Date: Sun Jun  5 06:41:15 2011
New Revision: 1131952

URL: http://svn.apache.org/viewvc?rev=1131952&view=rev
Log:
Updated a comment and corrected some formating.

Modified:
    incubator/mesos/trunk/src/get_conf.cpp

Modified: incubator/mesos/trunk/src/get_conf.cpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/get_conf.cpp?rev=1131952&r1=1131951&r2=1131952&view=diff
==============================================================================
--- incubator/mesos/trunk/src/get_conf.cpp (original)
+++ incubator/mesos/trunk/src/get_conf.cpp Sun Jun  5 06:41:15 2011
@@ -4,12 +4,14 @@
 using std::cout;
 using namespace mesos::internal;
 
-int main(int argc, char **argv) {
+
+int main(int argc, char **argv)
+{
   if (argc == 1) {
     cout << "Usage:  mesos-getconf OPTION [arg1 arg2 ... ]\n\n";
     cout << "OPTION\t\tis the name option whose value is to be extracted\n";
     cout << "arg1 ...\tOptional arguments passed to mesos, e.g. --quiet\n\n";
-    cout << "This utility gives shell scripts access Mesos parameters.\n\n";
+    cout << "This utility gives shell scripts access to Mesos parameters.\n\n";
     return 1;
   }
   Configurator conf;