Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

fixed typos #5350

Merged
merged 1 commit into from Oct 26, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions library/Zend/Cache/Storage/Adapter/DbaIterator.php
Expand Up @@ -131,7 +131,7 @@ public function current()
public function key() public function key()
{ {
if ($this->currentInternalKey === false) { 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 // remove namespace prefix
Expand All @@ -147,7 +147,7 @@ public function key()
public function next() public function next()
{ {
if ($this->currentInternalKey === false) { 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); $this->currentInternalKey = dba_nextkey($this->handle);
Expand Down
2 changes: 1 addition & 1 deletion library/Zend/Ldap/Node.php
Expand Up @@ -335,7 +335,7 @@ protected function markAsNew($new)
* Tells if the node is considered as new (not present on the server) * 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. * 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 * @return bool
*/ */
Expand Down