diff --git a/CHANGELOG.md b/CHANGELOG.md index d4277ae54..0b60e5e1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,8 @@ All notable changes to this project will be documented in this file, in reverse ### Fixed +- [#162](https://github.com/zendframework/zend-http/pull/162) fixes a typo in an exception message raised within `Cookies::fromString()`. + - [#121](https://github.com/zendframework/zend-http/pull/121) adds detection for non-numeric connection timeout values as well as integer casting to ensure the timeout is set properly in both the Curl and Socket adapters. diff --git a/src/Cookies.php b/src/Cookies.php index be31e2dcd..b691baeb4 100644 --- a/src/Cookies.php +++ b/src/Cookies.php @@ -78,7 +78,7 @@ public static function fromString($string) { throw new Exception\RuntimeException( __CLASS__ . '::' . __FUNCTION__ . ' should not be used as a factory, use ' - . __NAMESPACE__ . '\Headers::fromtString() instead.' + . __NAMESPACE__ . '\Headers::fromString() instead.' ); }