Skip to content

Commit 99a4394

Browse files
committed
Fixed unreachable links
1 parent dc74c0e commit 99a4394

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_compile.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)