Fix SSR prompt following #4919

This commit is contained in:
David Lattimore 2020-06-27 21:26:28 +10:00
parent 6a067ce947
commit 2a18ef0b09

View File

@ -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 });