From 8d188c84316b5b540f9e2b5ea397df60ba8dd0ee Mon Sep 17 00:00:00 2001 From: OKURA Masafumi Date: Fri, 7 Jun 2024 15:26:19 +0900 Subject: [PATCH] =?UTF-8?q?class=E6=96=87=E3=81=8C=E5=9E=8B=E3=81=A8?= =?UTF-8?q?=E5=A4=89=E6=95=B0=E3=81=AE=E5=AE=A3=E8=A8=80=E7=A9=BA=E9=96=93?= =?UTF-8?q?=E4=B8=A1=E6=96=B9=E3=81=AB=E5=AE=A3=E8=A8=80=E3=81=99=E3=82=8B?= =?UTF-8?q?=E3=81=93=E3=81=A8=E3=82=92=E6=98=8E=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 「同様に」を使って明示しています。 --- docs/project/declarationspaces.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/project/declarationspaces.md b/docs/project/declarationspaces.md index cf2899f06..f5465f33b 100644 --- a/docs/project/declarationspaces.md +++ b/docs/project/declarationspaces.md @@ -28,7 +28,7 @@ var bar = Bar; // ERROR: "cannot find name 'Bar'" `cannot find name`と言うのは、*変数*宣言空間に`Bar`という名前が宣言されていないからです。それは次のトピック「変数宣言空間」につながります。 ### 変数宣言空間(Variable Declaration Space) -変数宣言空間(Variable Declaration Space)には、変数として使用できるものもあります。`class Foo`は、型宣言空間に`Foo`型を宣言することを見てきました。驚かないでください。それは、*変数*宣言空間に対して、変数*Foo*を宣言します: +変数宣言空間(Variable Declaration Space)には、変数として使用できるものもあります。`class Foo`は、型宣言空間に`Foo`型を宣言することを見てきました。驚かないでください。それは、*変数*宣言空間に対しても同様に、変数*Foo*を宣言します: ```ts class Foo {};