Skip to content

Commit d8ee18f

Browse files
committed
Fix few words
1 parent 1a6cfce commit d8ee18f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/pyspark/sql/context.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ def setConf(self, key, value):
127127
def getConf(self, key, defaultValue=_NoValue):
128128
"""Returns the value of Spark SQL configuration property for the given key.
129129
130-
If the key is not set and defaultValue is not None, return
131-
defaultValue. If the key is not set and defaultValue is None, return
130+
If the key is not set and defaultValue is set, return
131+
defaultValue. If the key is not set and defaultValue is not set, return
132132
the system default value.
133133
134134
>>> sqlContext.getConf("spark.sql.shuffle.partitions")

0 commit comments

Comments
 (0)