Skip to content

Commit

Permalink
Merge pull request #33020 from marcozanghi/main
Browse files Browse the repository at this point in the history
Fixed example in command-mode-reference.adoc
  • Loading branch information
gsmet authored May 2, 2023
2 parents 8c80ca4 + 8bfb436 commit b2f7931
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/asciidoc/command-mode-reference.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ import io.quarkus.runtime.annotations.QuarkusMain;
public class HelloWorldMain implements QuarkusApplication {
@Override
public int run(String... args) throws Exception { // <.>
System.out.println("Hello " + args[1]);
System.out.println("Hello " + args[0]);
return 0;
}
}
Expand Down

0 comments on commit b2f7931

Please sign in to comment.