We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93f92c0 commit 1d42d86Copy full SHA for 1d42d86
python/pyspark/sql/functions.py
@@ -2103,7 +2103,7 @@ def udf(f=None, returnType=StringType()):
2103
>>> import random
2104
>>> random_udf = udf(lambda: int(random.random() * 100), IntegerType()).asNondeterministic()
2105
2106
- .. note:: The user-defined functions do not support conditional expressions or short curcuiting
+ .. note:: The user-defined functions do not support conditional expressions or short circuiting
2107
in boolean expressions and it ends up with being executed all internally. If the functions
2108
can fail on special rows, the workaround is to incorporate the condition into the functions.
2109
0 commit comments