diff --git a/doc/api/http.md b/doc/api/http.md index bbddbb295d5a66..e07a4d7abd9f24 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -1594,6 +1594,7 @@ header name: `last-modified`, `location`, `max-forwards`, `proxy-authorization`, `referer`, `retry-after`, or `user-agent` are discarded. * `set-cookie` is always an array. Duplicates are added to the array. +* For duplicate `cookie` headers, the values are joined together with '; '. * For all other headers, the values are joined together with ', '. ### message.httpVersion diff --git a/doc/api/http2.md b/doc/api/http2.md index 2cd8f213aa089e..0da4c63d676864 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -2288,7 +2288,7 @@ For incoming headers: `upgrade-insecure-requests`, `user-agent` or `x-content-type-options` are discarded. * `set-cookie` is always an array. Duplicates are added to the array. -* `cookie`: the values are joined together with '; '. +* For duplicate `cookie` headers, the values are joined together with '; '. * For all other headers, the values are joined together with ', '. ```js