From 27cfdeb1400afedcce9c9c0ed3b692dbef3daedd Mon Sep 17 00:00:00 2001 From: Sebastian Paczkowski <74934099+sebpacz@users.noreply.github.com> Date: Wed, 9 Jun 2021 19:32:08 +0200 Subject: [PATCH] [HTTP Client][CS] Add missing commas --- http_client.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http_client.rst b/http_client.rst index a8cf766b355..967ab15699c 100644 --- a/http_client.rst +++ b/http_client.rst @@ -835,9 +835,9 @@ Add an ``extra.curl`` option in your configuration to pass those extra options:: // ... 'extra' => [ 'curl' => [ - CURLOPT_IPRESOLVE => CURL_IPRESOLVE_V6 - ] - ] + CURLOPT_IPRESOLVE => CURL_IPRESOLVE_V6, + ], + ], ]); .. note::