From 7db0cf59d5f395ccf15b6ab0ea9cdf89eaba5a1b Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Sat, 26 Oct 2013 04:49:26 +0700 Subject: [PATCH] fixed typos --- library/Zend/Cache/Storage/Adapter/DbaIterator.php | 4 ++-- library/Zend/Ldap/Node.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/library/Zend/Cache/Storage/Adapter/DbaIterator.php b/library/Zend/Cache/Storage/Adapter/DbaIterator.php index f6b5ed07db1..6befd7ac9a4 100644 --- a/library/Zend/Cache/Storage/Adapter/DbaIterator.php +++ b/library/Zend/Cache/Storage/Adapter/DbaIterator.php @@ -131,7 +131,7 @@ public function current() public function key() { if ($this->currentInternalKey === false) { - throw new Exception\RuntimeException("Iterater is on an invalid state"); + throw new Exception\RuntimeException("Iterator is on an invalid state"); } // remove namespace prefix @@ -147,7 +147,7 @@ public function key() public function next() { if ($this->currentInternalKey === false) { - throw new Exception\RuntimeException("Iterater is on an invalid state"); + throw new Exception\RuntimeException("Iterator is on an invalid state"); } $this->currentInternalKey = dba_nextkey($this->handle); diff --git a/library/Zend/Ldap/Node.php b/library/Zend/Ldap/Node.php index dea86f187ee..d7e3cff3b3d 100644 --- a/library/Zend/Ldap/Node.php +++ b/library/Zend/Ldap/Node.php @@ -335,7 +335,7 @@ protected function markAsNew($new) * Tells if the node is considered as new (not present on the server) * * Please note, that this doesn't tell you if the node is present on the server. - * Use {@link exits()} to see if a node is already there. + * Use {@link exists()} to see if a node is already there. * * @return bool */