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

Commit

Permalink
Merge branch 'master' of git://github.com/zendframework/zf2 into hotf…
Browse files Browse the repository at this point in the history
…ix/uri-path-not-being-set-when-empty
  • Loading branch information
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Factory.php
Expand Up @@ -144,7 +144,7 @@ public static function registerReader($extension, $reader)
if (!is_string($reader) && !$reader instanceof Reader\ReaderInterface) {
throw new Exception\InvalidArgumentException(sprintf(
'Reader should be plugin name, class name or ' .
'instance of %s\Reader\ReaderInterface; recieved "%s"',
'instance of %s\Reader\ReaderInterface; received "%s"',
__NAMESPACE__,
(is_object($reader) ? get_class($reader) : gettype($reader))
));
Expand Down
2 changes: 1 addition & 1 deletion src/Processor/Token.php
Expand Up @@ -51,7 +51,7 @@ class Token implements ProcessorInterface

/**
* Token Processor walks through a Config structure and replaces all
* occurences of tokens with supplied values.
* occurrences of tokens with supplied values.
*
* @param array|Config|Traversable $tokens Associative array of TOKEN => value
* to replace it with
Expand Down
2 changes: 1 addition & 1 deletion src/Writer/Ini.php
Expand Up @@ -57,7 +57,7 @@ public function getNestSeparator()
}

/**
* Set if rendering should occour without sections or not.
* Set if rendering should occur without sections or not.
*
* If set to true, the INI file is rendered without sections completely
* into the global namespace of the INI file.
Expand Down

0 comments on commit 9287e61

Please sign in to comment.