From acd02c815232601b6b1262d32a6c19bfde3fb279 Mon Sep 17 00:00:00 2001 From: vuras Date: Mon, 11 Jun 2018 19:56:19 +0300 Subject: [PATCH] Update http_foundation.rst --- components/http_foundation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/http_foundation.rst b/components/http_foundation.rst index d3f3df90781..2aae7aa812e 100644 --- a/components/http_foundation.rst +++ b/components/http_foundation.rst @@ -271,7 +271,7 @@ this complexity and defines some methods for the most common tasks:: // Joins an associative array into a string for use in an HTTP header HeaderUtils::toString(array('foo' => 'abc', 'bar' => true, 'baz' => 'a b c'), ',') - // => 'foo=bar, baz, baz="a b c"' + // => 'foo=abc, bar, baz="a b c"' // Encodes a string as a quoted string, if necessary HeaderUtils::quote('foo "bar"')