Skip to content

Commit

Permalink
Docs: Fix typo in native image reference manual
Browse files Browse the repository at this point in the history
Closes: #5315
  • Loading branch information
zakkak authored and olyagpl committed Oct 31, 2022
1 parent bb1b1e6 commit 12aa444
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/reference-manual/java-on-truffle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ java -truffle [options] class
```
To execute a JAR file:
```shell
java -truffle [options] --jar jarfile
java -truffle [options] -jar jarfile
```

Using Java 11 based GraalVM distribution, you can also run a Java application from the main class in a module, or run a single source-file program:
Expand Down
2 changes: 1 addition & 1 deletion docs/reference-manual/native-image/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ native-image [options] -jar jarfile [imagename]
4. Create a native executable:
```
native-image --jar App.jar
native-image -jar App.jar
```
It will produce a native executable in the project root directory.
5. Run the native executable:
Expand Down

0 comments on commit 12aa444

Please sign in to comment.