Skip to content

Commit

Permalink
Fix #879: array_fill() example has wrong parameter names
Browse files Browse the repository at this point in the history
  • Loading branch information
cmb69 committed Aug 25, 2021
1 parent acf178e commit 28ad235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion language/functions.xml
Expand Up @@ -641,7 +641,7 @@ array_fill(start_index: 0, count: 100, value: 50);
<programlisting role="php">
<![CDATA[
<?php
array_fill(value: 50, num: 100, start_index: 0);
array_fill(value: 50, count: 100, start_index: 0);
?>
]]>
</programlisting>
Expand Down

0 comments on commit 28ad235

Please sign in to comment.