Skip to content

Commit a032c56

Browse files
committed
Follow Benoit Daloze comments
1 parent ccccfda commit a032c56

27 files changed

+71
-71
lines changed

docs/enterprise-overview/architecture-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ It is designed to accelerate the execution of applications written in Java and o
1010
GraalVM Enterprise's polyglot capabilities make it possible to mix multiple programming languages in a single application while eliminating any foreign language call costs.
1111

1212
This page provides developers, solution architects, and infrastructure architects with an architectural overview of GraalVM Enterprise, as well as information about runtime modes, supported platforms, available distributions, core and additional functionalities, and support levels for various features.
13-
The conceptual overview and advantages of GraalVM Enterprise are described on the [Solutions Overview](overview.md) page.
13+
The conceptual overview and advantages of GraalVM Enterprise are described on the [Solutions Overview](solutions-overview.md) page.
1414

1515
* [GraalVM Enterprise Architecture](#graalvm-enterprise-architecture)
1616
* [Runtime Modes](#runtime-modes)

docs/examples/java-kotlin-aot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export GRAALVM_HOME=/Users/${current_user}/path/to/graalvm/Contents/Home
3838
```
3939
Note that your paths are likely to be different depending on the download location.
4040

41-
3. [Install Native Image](../reference-manual/native-image/README.md/#install-native-image) to make use of the `native-image` utility.
41+
3. [Install Native Image](../reference-manual/native-image/README.md#install-native-image) to make use of the `native-image` utility.
4242

4343
4. Then execute:
4444
```shell

docs/examples/native-image-examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export GRAALVM_HOME=/Users/${current_user}/path/to/graalvm/Contents/Home
3838
```
3939
Note that your paths are likely to be different depending on the download location.
4040

41-
3. [Install Native Image](../reference-manual/native-image/README.md/#install-native-image) to make use of the `native-image` utility.
41+
3. [Install Native Image](../reference-manual/native-image/README.md#install-native-image) to make use of the `native-image` utility.
4242

4343
4. Then execute:
4444
```shell

docs/examples/polyglot-javascript-java-r.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ git clone https://github.com/graalvm/graalvm-demos
1717
cd graalvm-demos/polyglot-javascript-java-r
1818
```
1919

20-
2. [Install GraalVM](../getting-started/graalvm-community/get-started-graalvm-community.md/#install-graalvm) on your platform.
20+
2. [Install GraalVM](../getting-started/graalvm-community/get-started-graalvm-community.md#install-graalvm) on your platform.
2121

2222
3. To run the demo, you need to enable Node.js support in GraalVM:
2323
```shell

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ public class HelloWorld {
284284
}
285285
```
286286

287-
> Note: For compilation `native-image` depends on the local toolchain. Make sure your system meets the [prerequisites](../../reference-manual/native-image/README.md/#prerequisites).
287+
> Note: For compilation `native-image` depends on the local toolchain. Make sure your system meets the [prerequisites](../../reference-manual/native-image/README.md#prerequisites).
288288
289289
Compile _HelloWorld.java_ to bytecode and then build a native image:
290290
```shell

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,18 @@ The base distribution of GraalVM Community Edition for Linux (AMD64) platforms i
3636
The base installation can be extended with:
3737

3838
Tools/Utilities:
39-
* [Native Image](../../reference-manual/native-image/README.md) -- a technology to compile an application ahead-of-time into a native executable
40-
* [LLVM toolchain](../../reference-manual/llvm/Compiling.md/#llvm-toolchain-for-compiling-cc) -- a set of tools and APIs for compiling native programs to bitcode that can be executed with on the GraalVM runtime
41-
* [Java on Truffle](../../reference-manual/java-on-truffle/README.md) -- a Java Virtual Machine implementation based on a Truffle interpreter for GraalVM
39+
* [Native Image](../../reference-manual/native-image/README.md) -- a technology to compile an application ahead-of-time into a native executable
40+
* [LLVM toolchain](../../reference-manual/llvm/Compiling.md#llvm-toolchain-for-compiling-cc) -- a set of tools and APIs for compiling native programs to bitcode that can be executed with on the GraalVM runtime
41+
* [Java on Truffle](../../reference-manual/java-on-truffle/README.md) -- a Java Virtual Machine implementation based on a Truffle interpreter for GraalVM
4242

4343
Runtimes:
44-
* [Node.js](../../reference-manual/js/README.md) -- Node.js v14.17.6 compatible
45-
* [Python](../../reference-manual/python/README.md) -- Python 3.8.5 compatible
46-
* [Ruby](../../reference-manual/ruby/README.md) -- Ruby 2.7.2 compatible
47-
* [R](/../../reference-manual/r/README.md) -- GNU R 4.0.3 compatible
48-
* [Wasm](../../reference-manual/wasm/README.md) -- WebAssembly (Wasm)
44+
* [Node.js](../../reference-manual/js/README.md) -- Node.js v14.17.6 compatible
45+
* [Python](../../reference-manual/python/README.md) -- Python 3.8.5 compatible
46+
* [Ruby](../../reference-manual/ruby/README.md) -- Ruby 2.7.2 compatible
47+
* [R](/../../reference-manual/r/README.md) -- GNU R 4.0.3 compatible
48+
* [Wasm](../../reference-manual/wasm/README.md) -- WebAssembly (Wasm)
4949
5050
These runtimes are not part of the GraalVM Community base distribution and must be installed separately.
5151

5252
To assist a user with installation, GraalVM includes **GraalVM Updater**, a command line utility to install and manage additional functionalities.
53-
Proceed to the [installation steps](../../reference-manual/graalvm-updater.md/#component-installation) to add any necessary language runtime or utility from above to GraalVM.
53+
Proceed to the [installation steps](../../reference-manual/graalvm-updater.md#component-installation) to add any necessary language runtime or utility from above to GraalVM.

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,18 @@ The base distribution of GraalVM Community Edition for macOS includes OpenJDK wi
6666
The base installation can be extended with:
6767

6868
Tools/Utilities:
69-
* [Native Image](../../reference-manual/native-image/README.md) -- a technology to compile an application ahead-of-time into a native executable
70-
* [LLVM toolchain](../../reference-manual/llvm/Compiling.md/#llvm-toolchain-for-compiling-cc) -- a set of tools and APIs for compiling native programs to bitcode that can be executed with on the GraalVM runtime
71-
* [Java on Truffle](../../reference-manual/java-on-truffle/README.md) -- a Java Virtual Machine implementation based on a Truffle interpreter for GraalVM
69+
* [Native Image](../../reference-manual/native-image/README.md) -- a technology to compile an application ahead-of-time into a native executable
70+
* [LLVM toolchain](../../reference-manual/llvm/Compiling.md#llvm-toolchain-for-compiling-cc) -- a set of tools and APIs for compiling native programs to bitcode that can be executed with on the GraalVM runtime
71+
* [Java on Truffle](../../reference-manual/java-on-truffle/README.md) -- a Java Virtual Machine implementation based on a Truffle interpreter for GraalVM
7272

7373
Runtimes:
74-
* [Node.js](../../reference-manual/js/README.md) -- Node.js v14.17.6 compatible
75-
* [Python](../../reference-manual/python/README.md) -- Python 3.8.5 compatible
76-
* [Ruby](../../reference-manual/ruby/README.md) -- Ruby 2.7.2 compatible
77-
* [R](/../../reference-manual/r/README.md) -- GNU R 4.0.3 compatible
78-
* [Wasm](../../reference-manual/wasm/README.md) -- WebAssembly (Wasm)
74+
* [Node.js](../../reference-manual/js/README.md) -- Node.js v14.17.6 compatible
75+
* [Python](../../reference-manual/python/README.md) -- Python 3.8.5 compatible
76+
* [Ruby](../../reference-manual/ruby/README.md) -- Ruby 2.7.2 compatible
77+
* [R](/../../reference-manual/r/README.md) -- GNU R 4.0.3 compatible
78+
* [Wasm](../../reference-manual/wasm/README.md) -- WebAssembly (Wasm)
7979
8080
These runtimes are not part of the GraalVM Community base distribution and must be installed separately.
8181

8282
To assist a user with installation, GraalVM includes **GraalVM Updater**, a command line utility to install and manage additional functionalities.
83-
Proceed to the [installation steps](../../reference-manual/graalvm-updater.md/#component-installation) to add any necessary language runtime or utility from above to GraalVM.
83+
Proceed to the [installation steps](../../reference-manual/graalvm-updater.md#component-installation) to add any necessary language runtime or utility from above to GraalVM.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ public class HelloWorld {
284284
}
285285
```
286286

287-
> Note: For compilation `native-image` depends on the local toolchain. Make sure your system meets the [prerequisites](../../reference-manual/native-image/README.md/#prerequisites).
287+
> Note: For compilation `native-image` depends on the local toolchain. Make sure your system meets the [prerequisites](../../reference-manual/native-image/README.md#prerequisites).
288288
289289
Compile _HelloWorld.java_ to bytecode and then build a native image:
290290
```shell

docs/getting-started/graalvm-enterprise/installation-linux.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,18 @@ The base distribution of GraalVM Enterprise for Linux (AMD64) platforms includes
3535
The base installation can be extended with:
3636

3737
Tools/Utilities:
38-
* [Native Image](../../reference-manual/native-image/README.md) -- a technology to compile an application ahead-of-time into a native executable
39-
* [LLVM toolchain](../../reference-manual/llvm/Compiling.md/#llvm-toolchain-for-compiling-cc) -- a set of tools and APIs for compiling native programs to bitcode that can be executed with on the GraalVM runtime
40-
* [Java on Truffle](../../reference-manual/java-on-truffle/README.md) -- a Java Virtual Machine implementation based on a Truffle interpreter for GraalVM
38+
* [Native Image](../../reference-manual/native-image/README.md) -- a technology to compile an application ahead-of-time into a native executable
39+
* [LLVM toolchain](../../reference-manual/llvm/Compiling.md#llvm-toolchain-for-compiling-cc) -- a set of tools and APIs for compiling native programs to bitcode that can be executed with on the GraalVM runtime
40+
* [Java on Truffle](../../reference-manual/java-on-truffle/README.md) -- a Java Virtual Machine implementation based on a Truffle interpreter for GraalVM
4141

4242
Runtimes:
43-
* [Node.js](../../reference-manual/js/README.md) -- Node.js v14.17.6 compatible
44-
* [Python](../../reference-manual/python/README.md) -- Python 3.8.5 compatible
45-
* [Ruby](../../reference-manual/ruby/README.md) -- Ruby 2.7.2 compatible
46-
* [R](/../../reference-manual/r/README.md) -- GNU R 4.0.3 compatible
47-
* [Wasm](../../reference-manual/wasm/README.md) -- WebAssembly (Wasm)
43+
* [Node.js](../../reference-manual/js/README.md) -- Node.js v14.17.6 compatible
44+
* [Python](../../reference-manual/python/README.md) -- Python 3.8.5 compatible
45+
* [Ruby](../../reference-manual/ruby/README.md) -- Ruby 2.7.2 compatible
46+
* [R](/../../reference-manual/r/README.md) -- GNU R 4.0.3 compatible
47+
* [Wasm](../../reference-manual/wasm/README.md) -- WebAssembly (Wasm)
4848
4949
These runtimes are not part of the GraalVM Enterprise base distribution and must be installed separately.
5050

5151
To assist a user with installation, GraalVM includes **GraalVM Updater**, a command line utility to install and manage additional functionalities.
52-
Proceed to the [installation steps](../../reference-manual/graalvm-updater.md/#component-installation) to add any necessary language runtime or utility from above to GraalVM.
52+
Proceed to the [installation steps](../../reference-manual/graalvm-updater.md#component-installation) to add any necessary language runtime or utility from above to GraalVM.

docs/getting-started/graalvm-enterprise/installation-macos.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,18 @@ The base distribution of GraalVM Enterprise for macOS platforms includes Oracle
6666
The base installation can be extended with:
6767

6868
Tools/Utilities:
69-
* [Native Image](../../reference-manual/native-image/README.md) -- a technology to compile an application ahead-of-time into a native executable
70-
* [LLVM toolchain](../../reference-manual/llvm/Compiling.md/#llvm-toolchain-for-compiling-cc) -- a set of tools and APIs for compiling native programs to bitcode that can be executed with on the GraalVM runtime
71-
* [Java on Truffle](../../reference-manual/java-on-truffle/README.md) -- a Java Virtual Machine implementation based on a Truffle interpreter for GraalVM
69+
* [Native Image](../../reference-manual/native-image/README.md) -- a technology to compile an application ahead-of-time into a native executable
70+
* [LLVM toolchain](../../reference-manual/llvm/Compiling.md#llvm-toolchain-for-compiling-cc) -- a set of tools and APIs for compiling native programs to bitcode that can be executed with on the GraalVM runtime
71+
* [Java on Truffle](../../reference-manual/java-on-truffle/README.md) -- a Java Virtual Machine implementation based on a Truffle interpreter for GraalVM
7272

7373
Runtimes:
74-
* [Node.js](../../reference-manual/js/README.md) -- Node.js v14.17.6 compatible
75-
* [Python](../../reference-manual/python/README.md) -- Python 3.8.5 compatible
76-
* [Ruby](../../reference-manual/ruby/README.md) -- Ruby 2.7.2 compatible
77-
* [R](/../../reference-manual/r/README.md) -- GNU R 4.0.3 compatible
78-
* [Wasm](../../reference-manual/wasm/README.md) -- WebAssembly (Wasm)
74+
* [Node.js](../../reference-manual/js/README.md) -- Node.js v14.17.6 compatible
75+
* [Python](../../reference-manual/python/README.md) -- Python 3.8.5 compatible
76+
* [Ruby](../../reference-manual/ruby/README.md) -- Ruby 2.7.2 compatible
77+
* [R](/../../reference-manual/r/README.md) -- GNU R 4.0.3 compatible
78+
* [Wasm](../../reference-manual/wasm/README.md) -- WebAssembly (Wasm)
7979
8080
These runtimes are not part of the GraalVM Enterprise base distribution and must be installed separately.
8181

8282
To assist a user with installation, GraalVM includes **GraalVM Updater**, a command line utility to install and manage additional functionalities.
83-
Proceed to the [installation steps](../../reference-manual/graalvm-updater.md/#component-installation) to add any necessary language runtime or utility from above to GraalVM.
83+
Proceed to the [installation steps](../../reference-manual/graalvm-updater.md#component-installation) to add any necessary language runtime or utility from above to GraalVM.

0 commit comments

Comments
 (0)