diff --git a/docs/en/sql-reference/functions/string-functions.md b/docs/en/sql-reference/functions/string-functions.md index b29b21abdb9..77bb14c4f5f 100644 --- a/docs/en/sql-reference/functions/string-functions.md +++ b/docs/en/sql-reference/functions/string-functions.md @@ -93,7 +93,7 @@ leftPadUTF8('string','length'[, 'pad_string']) **Arguments** -- `string` — Input string, that needs to be padded. [String](../data-types/string.md). +- `string` — Input string that needs to be padded. [String](../data-types/string.md). - `length` — The length of the resulting string. [UInt](../data-types/int-uint.md). If the value is less than the input string length, then the input string is returned as-is. - `pad_string` — The string to pad the input string with. [String](../data-types/string.md). Optional. If not specified, then the input string is padded with spaces.