com doc/ja: Fix #80570: Incorrect named argument name for the nested function: language/functions.xml

[email protected] (Yoshinari Takaoka) Fri, 01 Jan 2021 20:05:32 +0000
Newsgroups php.doc.ja
Message-ID <[email protected]>
Commit:    157b2fab21e7e92d77996a097794eacd2c431927
Author:    Yoshinari Takaoka <[email protected]>         Sat, 2 Jan 2021 05:05:32 +0900
Parents:   05ed8b1ce7824b6e0b2db1fe8356a2e511eb2dbc
Branches:  master

Link:       http://git.php.net/?p=doc/ja.git;a=commitdiff;h=157b2fab21e7e92d77996a097794eacd2c431927

Log:
Fix #80570: Incorrect named argument name for the nested function

Bugs:
https://bugs.php.net/80570

Changed paths:
  M  language/functions.xml


Diff:
diff --git a/language/functions.xml b/language/functions.xml
index b2470e71c3..e3982526a6 100644
--- a/language/functions.xml
+++ b/language/functions.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: ef81c708faf8d64a78c103fca7d53b7f6cdfacce Maintainer: takagi Status: ready -->
+<!-- EN-Revision: 4f04bd50ed71039b89e2b9a5aba7e53e74cac4c6 Maintainer: takagi Status: ready -->
 <!-- CREDITS: hirokawa,mumumu -->
  <chapter xml:id="language.functions" xmlns="http://docbook.org/ns/docbook">
   <title>関数</title>
@@ -622,7 +622,7 @@ function_name($variableStoringParamName: $value);
 array_fill(0, 100, 50);
 
 // 名前付き引数の場合:
-array_fill(start_index: 0, num: 100, value: 50);
+array_fill(start_index: 0, count: 100, value: 50);
 ?>
 ]]>
      </programlisting>