Skip to content

Commit c926a14

Browse files
committed
minor #15427 [HttpClient] [HTTP Client][CS] Add missing commas (sebpacz)
This PR was merged into the 5.2 branch. Discussion ---------- [HttpClient] [HTTP Client][CS] Add missing commas <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `5.x` for features of unreleased versions). --> Commits ------- 27cfdeb [HTTP Client][CS] Add missing commas
2 parents 7b904bf + 27cfdeb commit c926a14

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

http_client.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -835,9 +835,9 @@ Add an ``extra.curl`` option in your configuration to pass those extra options::
835835
// ...
836836
'extra' => [
837837
'curl' => [
838-
CURLOPT_IPRESOLVE => CURL_IPRESOLVE_V6
839-
]
840-
]
838+
CURLOPT_IPRESOLVE => CURL_IPRESOLVE_V6,
839+
],
840+
],
841841
]);
842842

843843
.. note::

0 commit comments

Comments
 (0)