File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ Modified: 2001-09-17
9
9
1. Background/Need
10
10
==================
11
11
12
- Many internal function of PHP will reject parameters because of their
12
+ Many internal functions of PHP will reject parameters because of their
13
13
type (the array and variable function come to mind). For userland
14
14
this is not an easy task as there is no uniform way to do it. An
15
15
addition to the engine for requiring loose types would allow
16
- delevopers to know that the data passed to their functions is of the
16
+ developers to know that the data passed to their functions are of the
17
17
correct type and reduce the need for duplicating the same code in
18
18
every function to check for the type of data.
19
19
@@ -57,7 +57,7 @@ function foo (array $var){
57
57
===========
58
58
59
59
Mis-matches in type should be reported as fatal errors and should halt
60
- the execution of a script as that function can not be run and code
60
+ the execution of a script as that function cannot be run and code
61
61
following could not reliably run.
62
62
63
63
You can’t perform that action at this time.
0 commit comments