diff --git a/src/mooBench/benchmark/Benchmark.java b/src/mooBench/benchmark/Benchmark.java
index b543bd07885c51be24f1d31566fe6d1d24d45a48..bccf6421bb9379a803d01d468e1dfac895165a21 100644
--- a/src/mooBench/benchmark/Benchmark.java
+++ b/src/mooBench/benchmark/Benchmark.java
@@ -125,16 +125,16 @@ public final class Benchmark {
 	public static void parseAndInitializeArguments(final String[] args) {
 		final Options cmdlOpts = new Options();
 		cmdlOpts.addOption(OptionBuilder.withLongOpt("totalcalls").withArgName("calls").hasArg(true).isRequired(true)
-				.withDescription("Number of total Method-Calls performed.").withValueSeparator('=').create("t"));
+				.withDescription("Number of total method calls performed.").withValueSeparator('=').create("t"));
 		cmdlOpts.addOption(OptionBuilder.withLongOpt("methodtime").withArgName("time").hasArg(true).isRequired(true).withDescription("Time a method call takes.")
 				.withValueSeparator('=').create("m"));
 		cmdlOpts.addOption(OptionBuilder.withLongOpt("totalthreads").withArgName("threads").hasArg(true).isRequired(true)
-				.withDescription("Number of Threads started.").withValueSeparator('=').create("h"));
+				.withDescription("Number of threads started.").withValueSeparator('=').create("h"));
 		cmdlOpts.addOption(OptionBuilder.withLongOpt("recursiondepth").withArgName("depth").hasArg(true).isRequired(true)
-				.withDescription("Depth of Recursion performed.").withValueSeparator('=').create("d"));
+				.withDescription("Depth of recursion performed.").withValueSeparator('=').create("d"));
 		cmdlOpts.addOption(OptionBuilder.withLongOpt("output-filename").withArgName("filename").hasArg(true).isRequired(true)
 				.withDescription("Filename of results file. Output is appended if file exists.").withValueSeparator('=').create("o"));
-		cmdlOpts.addOption(OptionBuilder.withLongOpt("quickstart").isRequired(false).withDescription("Skips initial Garbage Collection.").create("q"));
+		cmdlOpts.addOption(OptionBuilder.withLongOpt("quickstart").isRequired(false).withDescription("Skips initial garbage collection.").create("q"));
 		cmdlOpts.addOption(OptionBuilder.withLongOpt("runnable").withArgName("classname").hasArg(true).isRequired(false)
 				.withDescription("Class implementing the Runnable interface. run() method is executed before the benchmark starts.").withValueSeparator('=')
 				.create("r"));