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

Author: pshearer <pshearer@massmutual.com>

Closes #10414 from pshearer/patch-1.
This commit is contained in:
pshearer 2015-12-21 14:04:59 -08:00 committed by Andrew Or
parent 1eb90bc9ca
commit fc6dbcc703

View file

@ -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.',
}