Skip to content
This repository was archived by the owner on Nov 18, 2022. It is now read-only.

Commit 26f6d90

Browse files
Fix SSR prompt following #4919
1 parent 2cb8b60 commit 26f6d90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust-analyzer/editors/code/src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export function ssr(ctx: Ctx): Cmd {
158158

159159
const options: vscode.InputBoxOptions = {
160160
value: "() ==>> ()",
161-
prompt: "Enter request, for example 'Foo($a:expr) ==> Foo::new($a)' ",
161+
prompt: "Enter request, for example 'Foo($a) ==> Foo::new($a)' ",
162162
validateInput: async (x: string) => {
163163
try {
164164
await client.sendRequest(ra.ssr, { query: x, parseOnly: true });

0 commit comments

Comments
 (0)