Skip to content

Commit

Permalink
[DOCFIX] Fix links to java file examples in Java-API.md
Browse files Browse the repository at this point in the history
relative links within the codebase do not render to usable links when
publishing to our documentation website.
`[description](/path/to/file)` will render as
`https://docs.alluxio.io/path/to/file`

replace with the full github url to the corresponding file in master
branch instead

pr-link: Alluxio#16834
change-id: cid-6ad346b38e0e2ff0c8018105930fae64261cd58b
  • Loading branch information
Xenorith authored and jiacheliu3 committed May 16, 2023
1 parent af2f66e commit 5ffe0d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/en/api/Java-API.md
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,6 @@ org.apache.orc.Reader orc = org.apache.orc.OrcFile.createReader(
### Examples in Source Code

There are several example Java programs. They are:
* [`Alluxio native API`](/examples/src/main/java/alluxio/examples/AlluxioFS.java)
* [`Alluxio Hadoop-Compatible File System`](/examples/src/main/java/alluxio/examples/AlluxioHDFS.java)
* [`HDFS`](/examples/src/main/java/alluxio/examples/HDFS.java)
* [`Alluxio native API`](https://github.com/Alluxio/alluxio/tree/master/examples/src/main/java/alluxio/examples/AlluxioFS.java)
* [`Alluxio Hadoop-Compatible File System`](https://github.com/Alluxio/alluxio/tree/master/examples/src/main/java/alluxio/examples/AlluxioHDFS.java)
* [`HDFS`](https://github.com/Alluxio/alluxio/tree/master/examples/src/main/java/alluxio/examples/HDFS.java)

0 comments on commit 5ffe0d4

Please sign in to comment.