Skip to content
This repository was archived by the owner on Jan 9, 2020. It is now read-only.

Commit 9575582

Browse files
sarutaksrowen
authored andcommitted
[DOCS] Fix unreachable links in the document
## What changes were proposed in this pull request? Recently, I found two unreachable links in the document and fixed them. Because of small changes related to the document, I don't file this issue in JIRA but please suggest I should do it if you think it's needed. ## How was this patch tested? Tested manually. Author: Kousuke Saruta <[email protected]> Closes apache#19195 from sarutak/fix-unreachable-link.
1 parent 7d0a3ef commit 9575582

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/building-spark.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ should run continuous compilation (i.e. wait for changes). However, this has not
111111
extensively. A couple of gotchas to note:
112112

113113
* it only scans the paths `src/main` and `src/test` (see
114-
[docs](http://scala-tools.org/mvnsites/maven-scala-plugin/usage_cc.html)), so it will only work
114+
[docs](http://davidb.github.io/scala-maven-plugin/example_cc.html)), so it will only work
115115
from within certain submodules that have that structure.
116116

117117
* you'll typically need to run `mvn install` from the project root for compilation within

docs/rdd-programming-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ before the `reduce`, which would cause `lineLengths` to be saved in memory after
604604
Spark's API relies heavily on passing functions in the driver program to run on the cluster.
605605
There are two recommended ways to do this:
606606

607-
* [Anonymous function syntax](http://docs.scala-lang.org/tutorials/tour/anonymous-function-syntax.html),
607+
* [Anonymous function syntax](http://docs.scala-lang.org/tour/basics.html#functions),
608608
which can be used for short pieces of code.
609609
* Static methods in a global singleton object. For example, you can define `object MyFunctions` and then
610610
pass `MyFunctions.func1`, as follows:

0 commit comments

Comments
 (0)