Skip to content

Commit cdf7593

Browse files
authored
Merge pull request #149 from irasally/fix-de-referencing-transrate
ReferenceErrorの説明文を修正
2 parents d056020 + fe50efe commit cdf7593

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

type-system/exceptions.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ console.log.apply(console, new Array(1000000000)); // RangeError: Invalid array
2626

2727
### ReferenceError
2828

29-
無効な参照を参照解除するときに発生するエラーを表すインスタンスを作成します。例えば
29+
参照されたのが無効な参照だった場合に発生するエラーを表すインスタンスを作成します。例えば
3030

3131
```javascript
3232
'use strict';
@@ -168,4 +168,3 @@ function validate(value: number): {error?: string} {
168168
そして今、型システムで表現されています。
169169

170170
> 非常に一般的な\(シンプル/キャッチオールなど\)の方法でエラーを処理しない限り、エラーをスローしないでください。
171-

0 commit comments

Comments
 (0)