diff options
author | Andi Gutmans <andi@php.net> | 2003-12-30 13:28:31 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2003-12-30 13:28:31 +0000 |
commit | fc835b4a46cba8162e2f8621f27b2578f1d20d9c (patch) | |
tree | d7505f60672e916b877bca467deb239c0f47fec9 /Zend/ZEND_CHANGES | |
parent | 5e9279bb440de020d9e27445a2a2537f497df01b (diff) | |
download | php-git-fc835b4a46cba8162e2f8621f27b2578f1d20d9c.tar.gz |
- Fix typos
Diffstat (limited to 'Zend/ZEND_CHANGES')
-rw-r--r-- | Zend/ZEND_CHANGES | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/ZEND_CHANGES b/Zend/ZEND_CHANGES index 15cc44e07e..85c7c5203e 100644 --- a/Zend/ZEND_CHANGES +++ b/Zend/ZEND_CHANGES @@ -861,10 +861,10 @@ Changes in the Zend Engine 2.0 The magic method __toString() allows to overload the object to string conversion. This conversion is only done automatically for printing functions (echo, *printf) but not for other functions - that expect strings. Also the function __toStrign is not used in + that expect strings. Also the function __toString is not used in places where objects are not allowed but strings are like array indices. Note that specialized objects maybe converted to a string - in any place but without calling __tostring(). + in any place but without calling __toString(). Example: |