Skip to content

Commit 061e92b

Browse files
committed
Formatting fix
1 parent d2717eb commit 061e92b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
6.03 KB
Binary file not shown.

doc/spec.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3898,10 +3898,10 @@ A super property access in a static member function or a static member accessor
38983898
_super.<PropertyName>
38993899
```
39003900
3901-
where *PropertyName* is the name of the referenced base class property. When the super property access appears in a function call, the generated JavaScript is equivalent to*
3901+
where *PropertyName* is the name of the referenced base class property. When the super property access appears in a function call, the generated JavaScript is equivalent to
39023902
39033903
```TypeScript
3904-
*_super.<PropertyName>.call(this, <Arguments>)
3904+
_super.<PropertyName>.call(this, <Arguments>)
39053905
```
39063906
39073907
where Arguments is the code generated for the argument list specified in the function call.

0 commit comments

Comments
 (0)