]> granicus.if.org Git - php/commitdiff
fixed typo and few grammar mistakes
authorArunSK <arunsk.tec@gmail.com>
Fri, 18 Oct 2013 02:00:40 +0000 (22:00 -0400)
committerArunSK <arunsk.tec@gmail.com>
Fri, 18 Oct 2013 02:00:40 +0000 (22:00 -0400)
Zend/RFCs/003.txt

index 30fb4cec4912f30d0600d45fda082d7eadf58521..ac042183d426c1601b2b8d85842ddfb28694e3bf 100644 (file)
@@ -9,11 +9,11 @@ Modified:        2001-09-17
 1. Background/Need
 ==================
 
-Many internal function of PHP will reject parameters because of their
+Many internal functions of PHP will reject parameters because of their
 type (the array and variable function come to mind).  For userland
 this is not an easy task as there is no uniform way to do it.  An
 addition to the engine for requiring loose types would allow
-delevopers to know that the data passed to their functions is of the
+developers to know that the data passed to their functions are of the
 correct type and reduce the need for duplicating the same code in
 every function to check for the type of data.
 
@@ -57,7 +57,7 @@ function foo (array $var){
 ===========
 
 Mis-matches in type should be reported as fatal errors and should halt
-the execution of a script as that function can not be run and code
+the execution of a script as that function cannot be run and code
 following could not reliably run.