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

Commit 834c806

Browse files
committed
Merge branch 'hotfix/162'
Close #162
2 parents eaea35e + fa57e93 commit 834c806

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ All notable changes to this project will be documented in this file, in reverse
2222

2323
### Fixed
2424

25+
- [#162](https://github.com/zendframework/zend-http/pull/162) fixes a typo in an exception message raised within `Cookies::fromString()`.
26+
2527
- [#121](https://github.com/zendframework/zend-http/pull/121) adds detection for non-numeric connection timeout values as well as
2628
integer casting to ensure the timeout is set properly in both the Curl and
2729
Socket adapters.

src/Cookies.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public static function fromString($string)
7878
{
7979
throw new Exception\RuntimeException(
8080
__CLASS__ . '::' . __FUNCTION__ . ' should not be used as a factory, use '
81-
. __NAMESPACE__ . '\Headers::fromtString() instead.'
81+
. __NAMESPACE__ . '\Headers::fromString() instead.'
8282
);
8383
}
8484

0 commit comments

Comments
 (0)