Skip to content

Commit f676e58

Browse files
author
Davies Liu
committed
fix typo
1 parent 3adb095 commit f676e58

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/pyspark/sql/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def createDataFrame(self, data, schema=None, samplingRatio=None, verifySchema=Tr
245245
``byte`` instead of ``tinyint`` for :class:`pyspark.sql.types.ByteType`.
246246
We can also use ``int`` as a short name for :class:`pyspark.sql.types.IntegerType`.
247247
:param samplingRatio: the sample ratio of rows used for inferring
248-
:param verifySchema: verify data types of very row against schema.
248+
:param verifySchema: verify data types of every row against schema.
249249
:return: :class:`DataFrame`
250250
251251
.. versionchanged:: 2.0

python/pyspark/sql/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ def createDataFrame(self, data, schema=None, samplingRatio=None, verifySchema=Tr
430430
``byte`` instead of ``tinyint`` for :class:`pyspark.sql.types.ByteType`. We can also use
431431
``int`` as a short name for ``IntegerType``.
432432
:param samplingRatio: the sample ratio of rows used for inferring
433-
:param verifySchema: verify data types of very row against schema.
433+
:param verifySchema: verify data types of every row against schema.
434434
:return: :class:`DataFrame`
435435
436436
>>> l = [('Alice', 1)]

0 commit comments

Comments
 (0)