From 0a86ee34257c7379314cdbd6d3f2f3008b350d1c Mon Sep 17 00:00:00 2001
From: chvmvd <104971044+chvmvd@users.noreply.github.com>
Date: Thu, 20 Jun 2024 12:53:14 +0900
Subject: [PATCH] =?UTF-8?q?=E3=80=8CHello=20World!=E3=80=8D=E3=82=92?=
=?UTF-8?q?=E3=80=8CHello=20world!=E3=80=8D=E3=81=AB=E5=A4=89=E6=9B=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
docs/04-operators/index.mdx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/04-operators/index.mdx b/docs/04-operators/index.mdx
index e4596d2..6a2cb70 100644
--- a/docs/04-operators/index.mdx
+++ b/docs/04-operators/index.mdx
@@ -10,7 +10,7 @@ title: 値と演算子
document.write("こんにちは、世界!");
```
-`"こんにちは、世界!"` や `"Hello World!"` などのように `"` (ダブルクォーテーション) で囲まれたものを、**文字列**と呼びます。文字列は、**値**の一種です。
+`"こんにちは、世界!"` や `"Hello world!"` などのように `"` (ダブルクォーテーション) で囲まれたものを、**文字列**と呼びます。文字列は、**値**の一種です。
次のプログラムを実行すると、`3` と画面に表示されます。
@@ -65,5 +65,5 @@ document.write(3 + 4 * 5);
```javascript
document.write("こんにちは、" + "世界!"); // こんにちは、世界!
-document.write("Hello" + "World!"); // HelloWorld!
+document.write("Hello" + "world!"); // Helloworld!
```