diff --git a/editors/code/src/commands.ts b/editors/code/src/commands.ts index 8c9d7802fff..5a1bc7f5769 100644 --- a/editors/code/src/commands.ts +++ b/editors/code/src/commands.ts @@ -158,7 +158,7 @@ export function ssr(ctx: Ctx): Cmd { const options: vscode.InputBoxOptions = { value: "() ==>> ()", - prompt: "Enter request, for example 'Foo($a:expr) ==> Foo::new($a)' ", + prompt: "Enter request, for example 'Foo($a) ==> Foo::new($a)' ", validateInput: async (x: string) => { try { await client.sendRequest(ra.ssr, { query: x, parseOnly: true });