Skip to content

Commit d04e979

Browse files
committed
Fix some old links to Java guide
1 parent a34ed33 commit d04e979

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

docs/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ As with the Scala example, we initialize a SparkContext, though we use the speci
336336
`JavaSparkContext` class to get a Java-friendly one. We also create RDDs (represented by
337337
`JavaRDD`) and run transformations on them. Finally, we pass functions to Spark by creating classes
338338
that extend `spark.api.java.function.Function`. The
339-
[Java programming guide](java-programming-guide.html) describes these differences in more detail.
339+
[Spark programming guide](programming-guide.html) describes these differences in more detail.
340340

341341
To build the program, we also write a Maven `pom.xml` file that lists Spark as a dependency.
342342
Note that Spark artifacts are tagged with a Scala version.

docs/streaming-programming-guide.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -813,10 +813,8 @@ output operators are defined:
813813
The complete list of DStream operations is available in the API documentation. For the Scala API,
814814
see [DStream](api/scala/index.html#org.apache.spark.streaming.dstream.DStream)
815815
and [PairDStreamFunctions](api/scala/index.html#org.apache.spark.streaming.dstream.PairDStreamFunctions).
816-
For the Java API, see [JavaDStream](api/scala/index.html#org.apache.spark.streaming.api.java.dstream.DStream)
817-
and [JavaPairDStream](api/scala/index.html#org.apache.spark.streaming.api.java.JavaPairDStream).
818-
Specifically for the Java API, see [Spark's Java programming guide](java-programming-guide.html)
819-
for more information.
816+
For the Java API, see [JavaDStream](api/java/org/apache/spark/streaming/api/java/JavaDStream.html)
817+
and [JavaPairDStream](api/java/org/apache/spark/streaming/api/java/JavaPairDStream.html).
820818

821819
## Persistence
822820
Similar to RDDs, DStreams also allow developers to persist the stream's data in memory. That is,

0 commit comments

Comments
 (0)