Skip to content

Commit a76c5f6

Browse files
committedNov 26, 2015
fix rpad/lpad help (fixes #13433)
1 parent f4ef1ad commit a76c5f6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎resources/function_help/lpad

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ using the fill character.
1010
<br>
1111
<code>length</code> - is int. The length of the new string.
1212
<br>
13-
<code>fill</code> - is char. The character to padd the remaining space with.
13+
<code>fill</code> - is char. The character to pad the remaining space with.
1414

1515
<h4>Example</h4>
1616
<!-- Show example of function.-->
17-
<code>lpad('Hello', 10, 'x') &rarr; 'Helloxxxxx'</code><br>
17+
<code>lpad('Hello', 10, 'x') &rarr; 'xxxxxHello'</code><br>

‎resources/function_help/rpad

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ using the fill character.
1010
<br>
1111
<code>width</code> - is int. The length of the new string.
1212
<br>
13-
<code>fill</code> - is char. The character to padd the remaining space with.
13+
<code>fill</code> - is char. The character to pad the remaining space with.
1414

1515
<h4>Example</h4>
1616
<!-- Show example of function.-->
17-
<code>rpad('Hello', 10, 'x') &rarr; 'xxxxxHello'</code><br>
17+
<code>rpad('Hello', 10, 'x') &rarr; 'Helloxxxxx'</code><br>
1818

0 commit comments

Comments
 (0)
Please sign in to comment.