From 8167ea13ab49983228807a06e1de9150c1acec1e Mon Sep 17 00:00:00 2001 From: hyukjinkwon Date: Mon, 17 Jul 2017 12:15:46 +0900 Subject: [PATCH] Add missing dot --- python/pyspark/sql/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyspark/sql/functions.py b/python/pyspark/sql/functions.py index 95ea25b061030..2c8c8e2d80f09 100644 --- a/python/pyspark/sql/functions.py +++ b/python/pyspark/sql/functions.py @@ -2089,7 +2089,7 @@ def _wrapped(self): """ # It is possible for a callable instance without __name__ attribute or/and - # __module__ attribute to be wrapped here For example, functools.partial. In this case, + # __module__ attribute to be wrapped here. For example, functools.partial. In this case, # we should avoid wrapping the attributes from the wrapped function to the wrapper # function. So, we take out these attribute names from the default names to set and # then manually assign it after being wrapped.