language/errors/basics.xml
de9c65c91ff1710d8b2d2ec955caea0162679305
...
...
@@ -12,7 +12,7 @@
12
12

13
13
<para>
14
14
Every error that PHP generates includes a type. A
15
-
<link linkend="errorfunc.constants">list of these types</link> is available,
15
+
<link linkend="errorfunc.constants">list of these error types</link> is available,
16
16
along with a short description of their behaviour and how they can be
17
17
caused.
18
18
</para>
...
...
@@ -37,7 +37,7 @@
37
37
to <constant>E_ALL</constant>, as you need to be aware of and fix the
38
38
issues raised by PHP. In production, you may wish to set this to a less
39
39
verbose level such as
40
-
<code>E_ALL &amp; ~E_NOTICE &amp; ~E_STRICT &amp; ~E_DEPRECATED</code>, but
40
+
<code>E_ALL &amp; ~E_NOTICE &amp; ~E_DEPRECATED</code>, but
41
41
in many cases <constant>E_ALL</constant> is also appropriate, as it may
42
42
provide early warning of potential issues.
43
43
</para>
44
44