We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f0fbba8 + 8d188c8 commit cadd30fCopy full SHA for cadd30f
docs/project/declarationspaces.md
@@ -28,7 +28,7 @@ var bar = Bar; // ERROR: "cannot find name 'Bar'"
28
`cannot find name`と言うのは、*変数*宣言空間に`Bar`という名前が宣言されていないからです。それは次のトピック「変数宣言空間」につながります。
29
30
### 変数宣言空間(Variable Declaration Space)
31
-変数宣言空間(Variable Declaration Space)には、変数として使用できるものもあります。`class Foo`は、型宣言空間に`Foo`型を宣言することを見てきました。驚かないでください。それは、*変数*宣言空間に対して、変数*Foo*を宣言します:
+変数宣言空間(Variable Declaration Space)には、変数として使用できるものもあります。`class Foo`は、型宣言空間に`Foo`型を宣言することを見てきました。驚かないでください。それは、*変数*宣言空間に対しても同様に、変数*Foo*を宣言します:
32
33
```ts
34
class Foo {};
0 commit comments