aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Konwinski <andykonwinski@gmail.com>2014-12-04 18:27:02 -0800
committerJosh Rosen <joshrosen@databricks.com>2014-12-04 18:27:02 -0800
commit15cf3b0125fe238dea2ce13e703034ba7cef477f (patch)
treea9757f30330c8d79fd81fdab78622de7ea77329d
parentddfc09c36381a0880dfa6778be2ca0bc7d80febf (diff)
downloadspark-15cf3b0125fe238dea2ce13e703034ba7cef477f.tar.gz
spark-15cf3b0125fe238dea2ce13e703034ba7cef477f.tar.bz2
spark-15cf3b0125fe238dea2ce13e703034ba7cef477f.zip
Fix typo in Spark SQL docs.
Author: Andy Konwinski <andykonwinski@gmail.com> Closes #3611 from andyk/patch-3 and squashes the following commits: 7bab333 [Andy Konwinski] Fix typo in Spark SQL docs.
-rw-r--r--docs/sql-programming-guide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/sql-programming-guide.md b/docs/sql-programming-guide.md
index 85d446b9da..be284fbe21 100644
--- a/docs/sql-programming-guide.md
+++ b/docs/sql-programming-guide.md
@@ -278,7 +278,7 @@ performed on JSON files.
from pyspark.sql import SQLContext, Row
sqlContext = SQLContext(sc)
-# Load a text file and convert each line to a dictionary.
+# Load a text file and convert each line to a Row.
lines = sc.textFile("examples/src/main/resources/people.txt")
parts = lines.map(lambda l: l.split(","))
people = parts.map(lambda p: Row(name=p[0], age=int(p[1])))