Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Fix typo in native image reference manual #5316

Merged
merged 1 commit into from
Oct 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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