From 8293dc5a43b91b04f1bcdbebc1055426f6f7e6e6 Mon Sep 17 00:00:00 2001 From: "Marcel M. Otte" Date: Fri, 13 Dec 2013 19:56:49 +0000 Subject: [PATCH] just some language beautifying --- src/to/mmo/cmdlineoptions/examples/Example.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/to/mmo/cmdlineoptions/examples/Example.java b/src/to/mmo/cmdlineoptions/examples/Example.java index 19df20b..1b1a8f7 100644 --- a/src/to/mmo/cmdlineoptions/examples/Example.java +++ b/src/to/mmo/cmdlineoptions/examples/Example.java @@ -10,7 +10,7 @@ public class Example { "--name", // it's always good to define a long commandline // parameter with a describing name "-n", // of course, programmer are always lazy so give them an - // option to shortcut your option + // possibility to shortcut your option "whatever", // a default parameter is good if you need the // option within your program, but don't care when // it's omitted on execution @@ -38,7 +38,7 @@ public class Example { initOptions(); // init the commandline options CmdOptions.i().parse(args); // parse them, and your done. --help is automatically set, so you can use it right away. - // now your program follows using this options... + // now your program follows, using this options... }