Skip to content

Commit 1b59f63

Browse files
committed
docs(napi/parser): correct typo in README (#18251)
An extraneous `` ` `` had crept in to a comment. Remove it. Also remove unnecessary full stops from short comments.
1 parent 1a247f1 commit 1b59f63

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

napi/parser/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,13 @@ export interface EcmaScriptModule {
8585
* Dynamic imports `import('foo')` are ignored since they can be used in non-ESM files.
8686
*/
8787
hasModuleSyntax: boolean;
88-
/** Import statements. */
88+
/** Import statements */
8989
staticImports: Array<StaticImport>;
90-
/** Export statements. */
90+
/** Export statements */
9191
staticExports: Array<StaticExport>;
92-
/** Dynamic import expressions. */
92+
/** Dynamic import expressions */
9393
dynamicImports: Array<DynamicImport>;
94-
/** Span positions` of `import.meta` */
94+
/** Span positions of `import.meta` */
9595
importMetas: Array<Span>;
9696
}
9797
```

0 commit comments

Comments
 (0)