Skip to content

Commit ee1ce6a

Browse files
authored
Fix various typos across the manual (#5570)
Single-word and single-token corrections only
1 parent e3654dc commit ee1ce6a

32 files changed

Lines changed: 33 additions & 33 deletions

File tree

appendices/migration56/openssl.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ array(4) {
134134
<term><parameter>dh_param</parameter></term>
135135
<listitem>
136136
<para>
137-
A path to a file containing parametrs for Diffie-Hellman key exchange,
137+
A path to a file containing parameters for Diffie-Hellman key exchange,
138138
such as that created by the following command:
139139
</para>
140140
<programlisting role="shell">

appendices/migration80/new-classes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
</sect2>
106106

107107
<sect2 xml:id="migration80.new-classes.sysv">
108-
<title>Systen V</title>
108+
<title>System V</title>
109109

110110
<itemizedlist>
111111
<listitem>

appendices/migration83/new-features.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
<![CDATA[
8484
<?php
8585
/*
86-
On /path/to/user.ini contains the following settings:
86+
/path/to/user.ini contains the following settings:
8787
8888
listen = localhost:${DRUPAL_FPM_PORT:-9000}
8989
*/

appendices/migration84/deprecated.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ class _MyClass {}
350350

351351
<simpara>
352352
Calling <methodname>ReflectionMethod::__construct</methodname>
353-
with one arguments is deprecated.
353+
with one argument is deprecated.
354354
Use <methodname>ReflectionMethod::createFromMethodName</methodname> instead.
355355
</simpara>
356356
</sect2>

chmonly/integration.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
(<filename>function.mysql-close.html</filename>) automatically. You can
8686
provide the full path of this file if your IDE supports context sensitive
8787
help, and provide the IDE specified string as the parameter. An example
88-
for this is the UltraEdit 9 intergation (see the edition's website).
88+
for this is the UltraEdit 9 integration (see the edition's website).
8989
</para>
9090
<para>
9191
The index of the manual (accessible via the index tab on the navigation

install/macos/bundled.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Enabling PHP using the instructions below is meant for quickly setting up
1414
a local development environment. It's <emphasis>highly recommended</emphasis>
1515
to always upgrade PHP to the newest version. Like most live software,
16-
newer versions are created to fix bugs and add features and PHP being is
16+
newer versions are created to fix bugs and add features and PHP is
1717
no different. See the appropriate macOS installation documentation for
1818
further details. The following instructions are geared towards a beginner
1919
with details provided for getting a default setup to work. All users are

install/unix/debian.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
<filename>/etc/php/7.4/conf.d/*.ini</filename>, etc. and depending on
9393
the extension will add entries similar to <literal>extension=foo.so</literal>.
9494
However, restarting the web server (like Apache) is required before these
95-
changes take affect.
95+
changes take effect.
9696
</simpara>
9797
</sect2>
9898
<sect2 xml:id="install.unix.debian.faq">

install/unix/dnf.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
<filename>/etc/php/8.3/conf.d/*.ini</filename>, etc. and depending on
9191
the extension will add entries similar to <literal>extension=foo.so</literal>.
9292
However, restarting the web server (like Apache) is required before these
93-
changes take affect.
93+
changes take effect.
9494
</simpara>
9595
</sect2>
9696
</sect1>

language/basic-syntax.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ echo "Last statement\n";
138138
<para>
139139
<note>
140140
<para>
141-
If PHP is embeded within XML or XHTML the normal PHP
141+
If PHP is embedded within XML or XHTML the normal PHP
142142
<code>&lt;?php ?&gt;</code> must be used to remain compliant
143143
with the standards.
144144
</para>

language/control-structures/for.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ for($i = 0; $i < count($people); ++$i) {
136136
</para>
137137
<simpara>
138138
The above code can be slow, because the array size is fetched on
139-
every iteration. Since the size never changes, the loop be easily
139+
every iteration. Since the size never changes, the loop can be easily
140140
optimized by using an intermediate variable to store the size instead
141141
of repeatedly calling <function>count</function>:
142142
</simpara>

0 commit comments

Comments
 (0)