Skip to content

Commit

Permalink
Fix typo: 「をを」→「を」 (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
nsfisis authored Feb 11, 2024
1 parent 9006b9b commit dc7a819
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion reference/gmp/book.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<warning>
<simpara>
より大きな整数を明示的に指定するには、文字列として指定する必要があります。
さもないと、PHP は値ををまず float として解釈するので、
さもないと、PHP は値をまず float として解釈するので、
精度が劣化してしまいます。
</simpara>
</warning>
Expand Down
2 changes: 1 addition & 1 deletion reference/imagick/examples.xml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ $draw->setFontSize(52);
/* テキストを追加します */
$draw->annotation(20, 50, "Hello World!");
/* 新しいキャンバスオブジェクトと白い画像をを作成します */
/* 新しいキャンバスオブジェクトと白い画像を作成します */
$canvas = new Imagick();
$canvas->newImage(350, 70, "white");
Expand Down
2 changes: 1 addition & 1 deletion reference/libxml/setup.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</para>
<para>
PHP は libxml2 向けの正しいライブラリファイルやヘッダファイル、
コンパイルフラグをを選ぶために <literal>pkg-config</literal> を使います。
コンパイルフラグを選ぶために <literal>pkg-config</literal> を使います。
configure スクリプトを実行する前に、
望ましいバージョンの libxml2 が選ばれるようにするために、
<literal>pkg-config</literal> の検索パスを制御する目的で
Expand Down
2 changes: 1 addition & 1 deletion reference/pdo/pdo/lastinsertid.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<para>
最後に挿入された行の ID、
あるいはシーケンスオブジェクトから次の値をを返します
あるいはシーケンスオブジェクトから次の値を返します
これは、構成しているドライバに依存します。例えば
<link linkend="ref.pdo-pgsql">PDO_PGSQL</link> の場合、<parameter>name</parameter>
パラメータにシーケンスオブジェクト名を指定することができます。
Expand Down
2 changes: 1 addition & 1 deletion reference/pgsql/functions/pg-insert.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<para>
<function>pg_insert</function> は、
<parameter>table_name</parameter> で指定したテーブルに
<parameter>values</parameter> の値をを挿入します
<parameter>values</parameter> の値を挿入します
</para>
<para>
<parameter>flags</parameter> が指定されている場合、そのオプションと
Expand Down
2 changes: 1 addition & 1 deletion reference/session/functions/session-name.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
クッキー の状態をチェックするだけでした。
そのため、古い <function>session_name</function> 関数は
<function>session_start</function> 関数の後に
<function>session_name</function> 関数をを呼び出すことを許して
<function>session_name</function> 関数を呼び出すことを許して
しまっており、それが PHP
のクラッシュや不具合を起こす可能性がありました。
</entry>
Expand Down
2 changes: 1 addition & 1 deletion reference/stream/streamwrapper/url-stat.xml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
&reftitle.returnvalues;
<para>
<function>stat</function>
が返すのと同じ要素をを持つ配列を返さなければなりません
が返すのと同じ要素を持つ配列を返さなければなりません
未知の値、あるいは取得できない値については適切な値
(通常は <constant>0</constant>) を設定します。
<function>stat</function> 関数で説明されている
Expand Down
2 changes: 1 addition & 1 deletion reference/varnish/examples.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ exit(0);
共用メモリから、varnish 統計のスナップショットを取得する例を示します。
</para>
<example>
<title>統計のスナップショットをを取得する</title>
<title>統計のスナップショットを取得する</title>
<programlisting role="php">
<![CDATA[
<?php
Expand Down

0 comments on commit dc7a819

Please sign in to comment.