Skip to content

Commit

Permalink
Make "info help" less misleading
Browse files Browse the repository at this point in the history
  • Loading branch information
shs96c committed Jan 15, 2020
1 parent 173e951 commit f818fb4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
Expand Up @@ -71,20 +71,21 @@ public Executable configure(String... args) {
String toDisplay;
String title;
switch (topic.topic) {
case "tracing":
title = "About Tracing";
toDisplay = "tracing.txt";
break;

case "security":
title = "About Security";
toDisplay = "security.txt";
break;

case "tracing":
title = "About Tracing";
toDisplay = "tracing.txt";
break;

case "help":
case "info":
default:
title = "Help";
toDisplay = "help.txt";
title = "Info";
toDisplay = "info.txt";
break;
}

Expand Down
@@ -1,5 +1,5 @@
You can find out more about topics concerning Selenium Grid by running
the "help" command followed by:
the "info" command followed by:

* tracing - Help on how distributed tracing works with selenium
* security - Help on how how to secure communications to and within selenium
Expand Down

0 comments on commit f818fb4

Please sign in to comment.