Skip to content

Commit d2717eb

Browse files
committed
Fixing formatting glitch
1 parent d6618e1 commit d2717eb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
4.42 KB
Binary file not shown.

doc/spec.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4480,9 +4480,9 @@ External import declarations are used to import external modules and create loca
44804480
   `import` *Identifier* `=` *ExternalModuleReference* `;`
44814481
44824482
  *ExternalModuleReference:*
4483-
   `require` `(` *StringLiteral* `)
4483+
   `require` `(` *StringLiteral* `)`
44844484
4485-
`The string literal specified in an *ExternalModuleReference* is interpreted as an external module name (section [11.2.1](#11.2.1)).
4485+
The string literal specified in an *ExternalModuleReference* is interpreted as an external module name (section [11.2.1](#11.2.1)).
44864486
44874487
An external import declaration introduces a local identifier that references a given external module. The local identifier becomes an alias for, and is classified exactly like, the entity or entities exported from the referenced external module. Specifically, if the referenced external module contains no export assignment the identifier is classified as a module, and if the referenced external module contains an export assignment the identifier is classified exactly like the entity or entities named in the export assignment.
44884488
@@ -5182,9 +5182,9 @@ This appendix contains a summary of the grammar found in the main document. As d
51825182
   `import` *Identifier* `=` *ExternalModuleReference* `;`
51835183
51845184
  *ExternalModuleReference:*
5185-
   `require` `(` *StringLiteral* `)
5185+
   `require` `(` *StringLiteral* `)`
51865186
5187-
  `*ExportAssignment:*
5187+
  *ExportAssignment:*
51885188
   `export` `=` *Identifier* `;`
51895189
51905190
## <a name="A.10"/>A.10 Ambients

0 commit comments

Comments
 (0)