Skip to content

Commit 10c723a

Browse files
committed
[GR-39202] Fix File not found error when navigating to index page from breadcrumbs.
PullRequest: graal/11993
2 parents aea128b + 44628b3 commit 10c723a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

docs/reference-manual/native-image/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ To inform `native-image` of a guest language used by an application, specify `--
2626
* [Prerequisites](#prerequisites)
2727
* [Build a Native Image](#build-a-native-image)
2828
* [Build a Shared Library](#build-a-shared-library)
29-
* [How to Determine What Version of GraalVM a Native Image is Generated with](#how-to-determine-what-version-of-graalvm-a-native-image-is-generated-with)
3029
* [Ahead-of-time Compilation Limitations](#ahead-of-time-compilation-limitations)
3130

3231
### License
@@ -185,7 +184,7 @@ int add(graal_isolatethread_t* thread, int a, int b);
185184
186185
Shared library images and executable images alike can have an arbitrary number of entry points, for example, to implement callbacks or APIs.
187186
188-
## How to Determine What Version of GraalVM an Image Is Generated with
187+
### How to Determine What Version of GraalVM an Image Is Generated with
189188
190189
Assuming you have a Java class file, _EmptyHello.class_ , containing an empty main method and have generated an empty shared object emptyhello with the Native Image builder:
191190
```shell

docs/reference-manual/reference-manuals.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
layout: docs
33
toc_group: reference-manual
44
link_title: Reference Manuals
5-
permalink: /reference-manuals/
6-
redirect_from: /reference-manual/
5+
permalink: /reference-manual/
6+
redirect_from:
7+
- /$version/reference-manuals/
8+
- /$version/docs/reference-manual/
79
---
810

911
# GraalVM Reference Manuals

0 commit comments

Comments
 (0)