Skip to content

Commit a170255

Browse files
committed
Follow review comments
1 parent 7cbb5d4 commit a170255

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

docs/getting-started/graalvm-community/get-started-graalvm-community.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Choose your operating system and proceed to the installation steps for your spec
2424

2525
## Start Running Applications
2626

27-
GraalVM includes the Java Development Kit (JDK), the just-in-time compiler (the Graal compiler), Native Image, and other regular Java tools.
27+
GraalVM includes the Java Development Kit (JDK), the just-in-time compiler (the Graal compiler), Native Image, and standard JDK tools.
2828
You can use the GraalVM JDK just like any other JDK in your IDE, so having installed GraalVM, you can run any Java application unmodified.
2929

3030
The `java` launcher runs the JVM with Graal as the last-tier compiler.
@@ -72,8 +72,8 @@ Larger Java examples can be found in the [GraalVM Demos repository on GitHub](ht
7272

7373
### Advanced Users
7474

75-
Developers who are more experienced with GraalVM or want to do more with GraalVM can proceed directly to [Reference Manuals](../../reference-manual/reference-manuals.md) for in-depth documentation.
75+
Developers who are more experienced with GraalVM or want to do more with GraalVM can proceed directly to [Reference Manuals](../../reference-manual/reference-manuals.md) for in-depth documentation.
7676

77-
You can find information on GraalVM's security model in the [Security Guide](../../security/security-guide.md), rich API documentation in the [GraalVM SDK Javadoc](https://www.graalvm.org/sdk/javadoc/) and [Truffle Javadoc](https://www.graalvm.org/truffle/javadoc/).
77+
You can find information on GraalVM's security model in the [Security Guide](../../security/security-guide.md), and rich API documentation in the [GraalVM SDK Javadoc](https://www.graalvm.org/sdk/javadoc/) and [Truffle Javadoc](https://www.graalvm.org/truffle/javadoc/).
7878

7979
We also recommend checking our [GraalVM Team Blog](https://medium.com/graalvm).

docs/getting-started/graalvm-community/macos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Optionally, you can specify GraalVM as the default JRE or JDK installation in yo
4848
## Installation Notes
4949

5050
### On JAVA_HOME Command
51-
The information property file, _Info.plist_, is in the top level _Contents_ folder.
51+
The information property file, _Info.plist_, is in the top level _Contents_ directory.
5252
This means that GraalVM participates in the macOS-specific `/usr/libexec/java_home` mechanism. Depending on other JDK installation(s) available, it is now possible that `/usr/libexec/java_home -v21` returns `/Library/Java/JavaVirtualMachines/<graalvm>/Contents/Home`.
5353
You can run `/usr/libexec/java_home -v21 -V` to see the complete list of JVMs available to the `java_home` command. This command sorts the JVMs in decreasing version order and chooses the top one as the default for the specified version.
5454
Within a specific version, the sort order appears to be stable but is unspecified.

docs/getting-started/graalvm-enterprise/oci/installation-compute-instance-with-OL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To replicate the steps in this guide, [create a Compute instance and connect to
1717
## Install Oracle GraalVM
1818

1919
For convenience, Oracle GraalVM RPMs are available in the Oracle YUM repository.
20-
RPMs for Oracle GraalVM for JDK 17, Oracle GraalVM for JDK 20, and Oracle GraalVM for JDK 21 are available with the package names `graalvm-17-native-image`, `graalvm-20-native-image`, and `graalvm-21-native-image` respectively.
20+
RPMs for Oracle GraalVM for JDK 17, Oracle GraalVM for JDK 20, and Oracle GraalVM for JDK 21 are available with the package names `graalvm-17-native-image`, `graalvm-20-native-image`, and `graalvm-21-native-image`, respectively.
2121
These Oracle GraalVM distributions include a JDK and Natime Image.
2222
Each Oracle GraalVM RPM is self-contained and all required dependencies will be automatically resolved during the installation.
2323

@@ -114,7 +114,7 @@ Now you have a ready-to-go OCI Compute instance with Oracle GraalVM installed.
114114

115115
## Install Additional Features
116116

117-
Oracle GraalVM provides more technologies such as the Javascript runtime, Java on Truffle, etc., each of which can be installed as an add-on.
117+
Oracle GraalVM provides more technologies such as the Javascript runtime and Java on Truffle, each of which can be installed separately.
118118

119119
1. Check what additional features are available for your current Oracle GraalVM installation:
120120

docs/getting-started/graalvm-enterprise/oci/installation-devops-build-pipeline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The DevOps CI/CD platform reads the file and runs the commands one by one.
2727
You do not need to run a YUM package manager command manually.
2828

2929
RPMs for Oracle GraalVM are available with the package names `graalvm-17-native-image`, `graalvm-20-native-image`, and `graalvm-21-native-image`.
30-
Each package includes both JDK and Natime Image.
30+
Each package includes the JDK and Native Image.
3131

3232
To install and use Oracle GraalVM in your DevOps Build Pipeline, update your build specification file as shown in the following example.
3333

docs/reference-manual/llvm/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ This includes languages like C/C++, Fortran and others.
1212
In contrast to static compilation that is normally used for LLVM-based languages, GraalVM's implementation of the `lli` tool first interprets LLVM bitcode and then dynamically compiles the hot parts of the program using the Graal compiler.
1313
This allows seamless interoperability with the dynamic languages supported by GraalVM.
1414

15-
> Note: The LLVM runtime and the LLVM toolchain are deprecated for removal in GraalVM for JDK 23.
16-
1715
## Install LLVM Runtime
1816

1917
Since GraalVM 22.2, the LLVM runtime is packaged in a separate GraalVM component. It can be installed with GraalVM Updater:

0 commit comments

Comments
 (0)