Skip to content

Commit 59c4ac3

Browse files
author
Greg Van Liew
authored
Add missing commas (microsoft#201137)
Add missing commas, avoid Latin
1 parent 536dcce commit 59c4ac3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/vscode-dts/vscode.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2012,10 +2012,10 @@ declare module 'vscode' {
20122012

20132013
/**
20142014
* A set of file filters that are used by the dialog. Each entry is a human-readable label,
2015-
* like "TypeScript", and an array of extensions, e.g.
2015+
* like "TypeScript", and an array of extensions, for example:
20162016
* ```ts
20172017
* {
2018-
* 'Images': ['png', 'jpg']
2018+
* 'Images': ['png', 'jpg'],
20192019
* 'TypeScript': ['ts', 'tsx']
20202020
* }
20212021
* ```
@@ -2047,10 +2047,10 @@ declare module 'vscode' {
20472047

20482048
/**
20492049
* A set of file filters that are used by the dialog. Each entry is a human-readable label,
2050-
* like "TypeScript", and an array of extensions, e.g.
2050+
* like "TypeScript", and an array of extensions, for example:
20512051
* ```ts
20522052
* {
2053-
* 'Images': ['png', 'jpg']
2053+
* 'Images': ['png', 'jpg'],
20542054
* 'TypeScript': ['ts', 'tsx']
20552055
* }
20562056
* ```

0 commit comments

Comments
 (0)