aboutsummaryrefslogtreecommitdiff
path: root/docs/java-programming-guide.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/java-programming-guide.md')
-rw-r--r--docs/java-programming-guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/java-programming-guide.md b/docs/java-programming-guide.md
index 2411e07849..4a36934553 100644
--- a/docs/java-programming-guide.md
+++ b/docs/java-programming-guide.md
@@ -33,7 +33,7 @@ There are a few key differences between the Java and Scala APIs:
* RDD methods like `collect()` and `countByKey()` return Java collections types,
such as `java.util.List` and `java.util.Map`.
* Key-value pairs, which are simply written as `(key, value)` in Scala, are represented
- by the `scala.Tuple2` class, and need to be created using `new Tuple2<K, V>(key, value)`
+ by the `scala.Tuple2` class, and need to be created using `new Tuple2<K, V>(key, value)`.
## RDD Classes