Skip to content

Commit e214ef6

Browse files
authored
convert tabs to spaces to fix improper indentation (#926)
The hover documentation for `interface MarkupContent` isn't aligned; converting tabs to spaces appears to fix its formatting.
1 parent d18a0cd commit e214ef6

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

types/src/main.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1886,13 +1886,13 @@ export type MarkupKind = 'plaintext' | 'markdown';
18861886
* ```ts
18871887
* let markdown: MarkdownContent = {
18881888
* kind: MarkupKind.Markdown,
1889-
* value: [
1890-
* '# Header',
1891-
* 'Some text',
1892-
* '```typescript',
1893-
* 'someCode();',
1894-
* '```'
1895-
* ].join('\n')
1889+
* value: [
1890+
* '# Header',
1891+
* 'Some text',
1892+
* '```typescript',
1893+
* 'someCode();',
1894+
* '```'
1895+
* ].join('\n')
18961896
* };
18971897
* ```
18981898
*

0 commit comments

Comments
 (0)