aboutsummaryrefslogtreecommitdiff
path: root/docs/sql-programming-guide.md
diff options
context:
space:
mode:
authorTijo Thomas <tijoparacka@gmail.com>2015-07-07 22:35:39 -0700
committerReynold Xin <rxin@databricks.com>2015-07-07 22:35:39 -0700
commit08192a1b8a375f29fbd852bbaed3a50021737475 (patch)
tree418537f5fcf54be2a7fbddfaa1c394baa563ca73 /docs/sql-programming-guide.md
parent61c3cf793d82f3e8da85bb918d36e95986244786 (diff)
downloadspark-08192a1b8a375f29fbd852bbaed3a50021737475.tar.gz
spark-08192a1b8a375f29fbd852bbaed3a50021737475.tar.bz2
spark-08192a1b8a375f29fbd852bbaed3a50021737475.zip
[SPARK-8886][Documentation]python Style update
Fixed comment given by rxin Author: Tijo Thomas <tijoparacka@gmail.com> Closes #7281 from tijoparacka/modification_for_python_style and squashes the following commits: 6334e21 [Tijo Thomas] removed space 3de4cd8 [Tijo Thomas] python Style update
Diffstat (limited to 'docs/sql-programming-guide.md')
-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 88c96a9a09..7c25578979 100644
--- a/docs/sql-programming-guide.md
+++ b/docs/sql-programming-guide.md
@@ -1798,7 +1798,7 @@ DataFrame jdbcDF = sqlContext.read().format("jdbc"). options(options).load();
{% highlight python %}
-df = sqlContext.read.format('jdbc').options(url = 'jdbc:postgresql:dbserver', dbtable='schema.tablename').load()
+df = sqlContext.read.format('jdbc').options(url='jdbc:postgresql:dbserver', dbtable='schema.tablename').load()
{% endhighlight %}