com doc/ja: Improved parameter markup in strtok function description.: reference/strings/functions/strtok.xml

[email protected] (Yoshinari Takaoka) Fri, 01 Jan 2021 22:09:32 +0000
Newsgroups php.doc.ja
Message-ID <[email protected]>
Commit:    35ecef34fafbe590ade8e2ab84e3fa7a1a80ae64
Author:    Yoshinari Takaoka <[email protected]>         Sat, 2 Jan 2021 07:09:32 +0900
Parents:   0692e84cf7a861f56b0a856a5a24f384bd349b09
Branches:  master

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

Log:
Improved parameter markup in strtok function description.

c.f https://github.com/php/doc-en/pull/306

Changed paths:
  M  reference/strings/functions/strtok.xml


Diff:
diff --git a/reference/strings/functions/strtok.xml b/reference/strings/functions/strtok.xml
index e5f5ab1fca..485e717f34 100644
--- a/reference/strings/functions/strtok.xml
+++ b/reference/strings/functions/strtok.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 2a7c919451f9a536431ba2117f8f90ae814c1c5f Maintainer: hirokawa Status: ready -->
+<!-- EN-Revision: 2f4863e1f6066a7bc7802164a8f46cd46b067132 Maintainer: hirokawa Status: ready -->
 <!-- CREDITS: shimooka,mumumu -->
 <refentry xml:id="function.strtok" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  <refnamediv>
@@ -25,7 +25,7 @@
    を 何らかの文字 <parameter>token</parameter>
    によって区切られている小さな文字列 (トークン) に分割します。
    "This is an example string" のような文字列がある場合、
-   空白文字をトークンとするとこの文字列を個々の単語に分割することができます。
+   空白文字を <parameter>token</parameter> に指定することでこの文字列を個々の単語に分割することができます。
   </para>
   <para>
    strtok は最初のコールの時のみ <parameter>string</parameter> 引数を使用することに注意してください。