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!
```