From e214ef65d43c8effa05575ca00baf732b1dae146 Mon Sep 17 00:00:00 2001 From: Hamir Mahal Date: Mon, 2 May 2022 04:40:04 -0700 Subject: [PATCH] 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. --- types/src/main.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/types/src/main.ts b/types/src/main.ts index 56e2c9144..038060fe7 100644 --- a/types/src/main.ts +++ b/types/src/main.ts @@ -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') * }; * ``` *