You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by an...@apache.org on 2015/12/21 23:05:02 UTC

spark git commit: Doc typo: ltrim = trim from left end, not right

Repository: spark
Updated Branches:
  refs/heads/master 1eb90bc9c -> fc6dbcc70


Doc typo: ltrim = trim from left end, not right

Author: pshearer <ps...@massmutual.com>

Closes #10414 from pshearer/patch-1.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/fc6dbcc7
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/fc6dbcc7
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/fc6dbcc7

Branch: refs/heads/master
Commit: fc6dbcc7038c2b030ef6a2dc8be5848499ccee1c
Parents: 1eb90bc
Author: pshearer <ps...@massmutual.com>
Authored: Mon Dec 21 14:04:59 2015 -0800
Committer: Andrew Or <an...@databricks.com>
Committed: Mon Dec 21 14:04:59 2015 -0800

----------------------------------------------------------------------
 python/pyspark/sql/functions.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/fc6dbcc7/python/pyspark/sql/functions.py
----------------------------------------------------------------------
diff --git a/python/pyspark/sql/functions.py b/python/pyspark/sql/functions.py
index 9062594..25594d7 100644
--- a/python/pyspark/sql/functions.py
+++ b/python/pyspark/sql/functions.py
@@ -1053,7 +1053,7 @@ _string_functions = {
     'lower': 'Converts a string column to lower case.',
     'upper': 'Converts a string column to upper case.',
     'reverse': 'Reverses the string column and returns it as a new string column.',
-    'ltrim': 'Trim the spaces from right end for the specified string value.',
+    'ltrim': 'Trim the spaces from left end for the specified string value.',
     'rtrim': 'Trim the spaces from right end for the specified string value.',
     'trim': 'Trim the spaces from both ends for the specified string column.',
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org