Skip to content

Commit 292dc86

Browse files
committed
Fix prettier
1 parent 40e08e6 commit 292dc86

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

editors/code/src/lsp_ext.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,11 @@ export interface ExpandedInlineMacro {
7979
name: string;
8080
expansion: SnippetTextEdit[];
8181
}
82-
export const expandMacroInline = new lc.RequestType<ExpandMacroParams, ExpandedInlineMacro | null, void>(
83-
"rust-analyzer/expandMacroInline"
84-
);
82+
export const expandMacroInline = new lc.RequestType<
83+
ExpandMacroParams,
84+
ExpandedInlineMacro | null,
85+
void
86+
>("rust-analyzer/expandMacroInline");
8587

8688
export const relatedTests = new lc.RequestType<lc.TextDocumentPositionParams, TestInfo[], void>(
8789
"rust-analyzer/relatedTests"

0 commit comments

Comments
 (0)