summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArunSK <arunsk.tec@gmail.com>2013-10-17 22:00:40 -0400
committerArunSK <arunsk.tec@gmail.com>2013-10-17 22:00:40 -0400
commit6b90f237879563497c888024947eb6064fb1b51c (patch)
treea17235b410778362c4784bbf7efaeb61639c4168
parent5e368b76ed985a50004126aeba4aaf5dae53aab8 (diff)
downloadphp-git-6b90f237879563497c888024947eb6064fb1b51c.tar.gz
fixed typo and few grammar mistakes
-rw-r--r--Zend/RFCs/003.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/RFCs/003.txt b/Zend/RFCs/003.txt
index 30fb4cec49..ac042183d4 100644
--- a/Zend/RFCs/003.txt
+++ b/Zend/RFCs/003.txt
@@ -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.