Skip to content

Commit ccf4d8d

Browse files
authored
float->floats
1 parent 29a691f commit ccf4d8d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/pyspark/sql/dataframe.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1376,10 +1376,10 @@ def approxQuantile(self, col, probabilities, relativeError):
13761376
could be very expensive. Note that values greater than 1 are
13771377
accepted but give the same result as 1.
13781378
:return: the approximate quantiles at the given probabilities. If
1379-
the input `col` is a string, the output is a list of float. If the
1379+
the input `col` is a string, the output is a list of floats. If the
13801380
input `col` is a list or tuple of strings, the output is also a
1381-
list, but each element in it is a list of float, i.e., the output
1382-
is a list of list of float.
1381+
list, but each element in it is a list of floats, i.e., the output
1382+
is a list of list of floats.
13831383
13841384
.. versionchanged:: 2.2
13851385
Added support for multiple columns.

0 commit comments

Comments
 (0)