Skip to content

Commit

Permalink
fix rpad/lpad help (fixes #13433)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Nov 26, 2015
1 parent f4ef1ad commit a76c5f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions resources/function_help/lpad
Expand Up @@ -10,8 +10,8 @@ using the fill character.
<br>
<code>length</code> - is int. The length of the new string.
<br>
<code>fill</code> - is char. The character to padd the remaining space with.
<code>fill</code> - is char. The character to pad the remaining space with.

<h4>Example</h4>
<!-- Show example of function.-->
<code>lpad('Hello', 10, 'x') &rarr; 'Helloxxxxx'</code><br>
<code>lpad('Hello', 10, 'x') &rarr; 'xxxxxHello'</code><br>
4 changes: 2 additions & 2 deletions resources/function_help/rpad
Expand Up @@ -10,9 +10,9 @@ using the fill character.
<br>
<code>width</code> - is int. The length of the new string.
<br>
<code>fill</code> - is char. The character to padd the remaining space with.
<code>fill</code> - is char. The character to pad the remaining space with.

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

0 comments on commit a76c5f6

Please sign in to comment.