diff --git a/doc/TypeScript Language Specification.docx b/doc/TypeScript Language Specification.docx index ee6a0b65887..403daa64ad1 100644 Binary files a/doc/TypeScript Language Specification.docx and b/doc/TypeScript Language Specification.docx differ diff --git a/doc/spec.md b/doc/spec.md index 22289b68d89..50f4c07fb00 100644 --- a/doc/spec.md +++ b/doc/spec.md @@ -3898,10 +3898,10 @@ A super property access in a static member function or a static member accessor _super. ``` -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* +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 ```TypeScript -*_super..call(this, ) +_super..call(this, ) ``` where Arguments is the code generated for the argument list specified in the function call.