Skip to content

Commit

Permalink
convert tabs to spaces to fix improper indentation (#926)
Browse files Browse the repository at this point in the history
The hover documentation for `interface MarkupContent` isn't aligned; converting tabs to spaces appears to fix its formatting.
  • Loading branch information
hamirmahal authored May 2, 2022
1 parent d18a0cd commit e214ef6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions types/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1886,13 +1886,13 @@ export type MarkupKind = 'plaintext' | 'markdown';
* ```ts
* let markdown: MarkdownContent = {
* kind: MarkupKind.Markdown,
* value: [
* '# Header',
* 'Some text',
* '```typescript',
* 'someCode();',
* '```'
* ].join('\n')
* value: [
* '# Header',
* 'Some text',
* '```typescript',
* 'someCode();',
* '```'
* ].join('\n')
* };
* ```
*
Expand Down

0 comments on commit e214ef6

Please sign in to comment.