From c20eb9225cc1f3003c30e202d075ce3265eda3e9 Mon Sep 17 00:00:00 2001 From: chvmvd <104971044+chvmvd@users.noreply.github.com> Date: Sat, 4 Nov 2023 00:04:53 +0900 Subject: [PATCH] Change to inline code in description of web server --- docs/3-web-servers/04-server/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/3-web-servers/04-server/index.md b/docs/3-web-servers/04-server/index.md index 6211f889c..3e4585158 100644 --- a/docs/3-web-servers/04-server/index.md +++ b/docs/3-web-servers/04-server/index.md @@ -101,7 +101,7 @@ Web の世界で用いられるプロトコルは、通常 **HTTP** と呼ばれ ![HTTP](./basic-http.png) -Web サーバーにアクセスするために用いた `http://localhost:3000/` のうち、http はプロトコルを、localhost:3000 はサーバーの所在地を表しています (localhost は自分のコンピューターを指します)。 +Web サーバーにアクセスするために用いた `http://localhost:3000/` のうち、`http` はプロトコルを、`localhost:3000` はサーバーの所在地を表しています (`localhost` は自分のコンピューターを指します)。 ## 静的ホスティング