Skip to content

Commit 36db893

Browse files
committed
Fix broken links in the documentation #194
1 parent dea2654 commit 36db893

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@ A high-performance implementation of the R programming language, built on GraalV
22

33
FastR aims to be:
44
* [efficient](https://medium.com/graalvm/faster-r-with-fastr-4b8db0e0dceb#4ab6): executing R language scripts faster than any other R runtime and as fast as `Rcpp`
5-
* [polyglot](https://medium.com/graalvm/faster-r-with-fastr-4b8db0e0dceb#0f5c): allowing fast [polyglot interoperability](https://www.graalvm.org/docs/reference-manual/polyglot/) with other languages in the GraalVM ecosystem.
5+
* [polyglot](https://medium.com/graalvm/faster-r-with-fastr-4b8db0e0dceb#0f5c): allowing fast [polyglot interoperability](https://www.graalvm.org/reference-manual/polyglot-programming/) with other languages in the GraalVM ecosystem.
66
* [compatible](https://medium.com/graalvm/faster-r-with-fastr-4b8db0e0dceb#fff5): with the reference R implementation including the [R extensions C API](https://cran.r-project.org/doc/manuals/r-release/R-exts.html)
77
* [embeddable](https://github.com/graalvm/examples/tree/master/r_java_embedding): allowing integration using the R embedding API or the GraalVM polyglot embedding SDK for Java
88

99

1010
The screenshot below shows Java application with embedded FastR engine.
1111
The plot below was generated by `ggplot2` running on FastR and it shows
1212
peak performance of the [raytracing example](http://www.tylermw.com/throwing-shade/).
13-
The measurements were [reproduced independently](https://nextjournal.com/sdanisch/fastr-benchmark).
13+
The measurements were [reproduced independently](https://web.archive.org/web/20181017111641/https://nextjournal.com/sdanisch/fastr-benchmark).
1414

1515
![Java embedding](documentation/assets/javaui.png)
1616
![Speedup](documentation/assets/speedup.png)
1717

1818
## <a name="getting_started"></a>Getting Started
19-
See the documentation on the GraalVM website on how to [get GraalVM](https://www.graalvm.org/docs/getting-started/) and [install and use FastR](http://www.graalvm.org/docs/reference-manual/languages/r/).
19+
See the documentation on the GraalVM website on how to [get GraalVM](https://www.graalvm.org/docs/getting-started/) and [install and use FastR](https://www.graalvm.org/reference-manual/r/).
2020

2121
```
2222
$ $GRAALVM/bin/R
@@ -54,7 +54,7 @@ fast as GNU-R/Rcpp and sometimes even faster because of the advanced optimizatio
5454

5555
## Documentation
5656

57-
The reference manual for FastR, which explains its advantages, its current limitations, compatibility and additional functionality is available on the [GraalVM website](http://www.graalvm.org/docs/reference-manual/languages/r/).
57+
The reference manual for FastR, which explains its advantages, its current limitations, compatibility and additional functionality is available on the [GraalVM website](https://www.graalvm.org/reference-manual/r/).
5858

5959
Further documentation, including contributor/developer-oriented information, is in the [documentation folder](documentation/Index.md) of this repository.
6060

@@ -65,7 +65,7 @@ The discussion on [Slack](https://www.graalvm.org/slack-invitation/) is a good w
6565

6666
We would like to grow the FastR open-source community to provide a free R implementation atop the Truffle/Graal stack.
6767
We encourage contributions, and invite interested developers to join in.
68-
Prospective contributors need to sign the [Oracle Contributor Agreement (OCA)](http://www.oracle.com/technetwork/community/oca-486395.html).
68+
Prospective contributors need to sign the [Oracle Contributor Agreement (OCA)](https://oca.opensource.oracle.com/).
6969
The access point for contributions, issues and questions about FastR is the [GitHub repository](https://github.com/oracle/fastr).
7070

7171
## Authors

documentation/dev/building.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ mx eclipseinit
238238

239239
We would like to grow the FastR open-source community to provide a free R implementation atop the Truffle/Graal stack.
240240
We encourage contributions, and invite interested developers to join in.
241-
Prospective contributors need to sign the [Oracle Contributor Agreement (OCA)](http://www.oracle.com/technetwork/community/oca-486395.html).
241+
Prospective contributors need to sign the [Oracle Contributor Agreement (OCA)](https://oca.opensource.oracle.com/).
242242
The access point for contributions, issues and questions about FastR is the [GitHub repository](https://github.com/oracle/fastr).
243243

244244
## Troubleshooting

documentation/user/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The R language home directory, which will be further referenced as `$R_HOME`, is
2525

2626
## Prerequisites
2727

28-
GraalVM's R runtime requires [zlib](https://zlib.net/) and the [OpenMP runtime library](https://www.openmprtl.org/).
28+
GraalVM's R runtime requires [zlib](https://zlib.net/) and the [OpenMP runtime library](https://www.openmp.org).
2929
Zlib is default part of MacOS and most modern Linux distributions.
3030
The following commands should install the OpenMP runtime library:
3131

0 commit comments

Comments
 (0)