From 45b4ac6bed93cbde4b13a1b03d81eaf1126fc375 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ate=C5=9F=20G=C3=B6ral?= Date: Thu, 3 Feb 2022 01:39:01 -0500 Subject: [PATCH] doc: use example.com for examples MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/41827 Reviewed-By: Tobias Nießen Reviewed-By: Colin Ihrig Reviewed-By: Beth Griggs Reviewed-By: Richard Lau Reviewed-By: Rich Trott Reviewed-By: Mestery --- doc/api/http.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/http.md b/doc/api/http.md index fe25ec5c04f2f1..fdd9c4a624d1b9 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -22,7 +22,7 @@ HTTP message headers are represented by an object like this: { 'content-length': '123', 'content-type': 'text/plain', 'connection': 'keep-alive', - 'host': 'mysite.com', + 'host': 'example.com', 'accept': '*/*' } ``` @@ -47,7 +47,7 @@ list like the following: 'content-LENGTH', '123', 'content-type', 'text/plain', 'CONNECTION', 'keep-alive', - 'Host', 'mysite.com', + 'Host', 'example.com', 'accepT', '*/*' ] ```