Skip to content

Commit 2875d5b

Browse files
committed
Fix whitespace
1 parent d7c4001 commit 2875d5b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/server/session.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,7 @@ namespace ts.server {
853853
if (simplifiedResult) {
854854
const displayString = ts.displayPartsToString(quickInfo.displayParts);
855855
const docString = ts.displayPartsToString(quickInfo.documentation);
856-
856+
857857
return {
858858
kind: quickInfo.kind,
859859
kindModifiers: quickInfo.kindModifiers,

src/services/jsDoc.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ namespace ts.JsDoc {
7979
for (const doc of jsDocs) {
8080
const tagsForDoc = (doc as JSDoc).tags;
8181
if (tagsForDoc) {
82-
tags.push(...tagsForDoc.filter(tag => tag.kind === SyntaxKind.JSDocTag).map(jsDocTag => {
83-
return {
84-
name: jsDocTag.tagName.text,
85-
text: jsDocTag.comment
82+
tags.push(...tagsForDoc.filter(tag => tag.kind === SyntaxKind.JSDocTag).map(jsDocTag => {
83+
return {
84+
name: jsDocTag.tagName.text,
85+
text: jsDocTag.comment
8686
} }));
8787
}
8888
}

0 commit comments

Comments
 (0)