Clean-up comment
diff --git a/MultiSource/Benchmarks/DOE-ProxyApps-C++/miniFE/param_utils.cpp b/MultiSource/Benchmarks/DOE-ProxyApps-C++/miniFE/param_utils.cpp
index 8c88bd7..0d71bfe 100644
--- a/MultiSource/Benchmarks/DOE-ProxyApps-C++/miniFE/param_utils.cpp
+++ b/MultiSource/Benchmarks/DOE-ProxyApps-C++/miniFE/param_utils.cpp
@@ -35,7 +35,7 @@
 //-------------------------------------------------------------
 void read_args_into_string(int argc, char** argv, std::string& arg_string)
 {
-  // Fix argument parsing to exclude argv[0] and prevent false detection of parameters in program path.
+  // Skip argv[0] since we're interested in program arguments only.
   arg_string = "";
   for(int i=1; i<argc; ++i) {
     arg_string += " " + std::string(argv[i]);