diff options
Diffstat (limited to 'editors/code/src')
-rw-r--r-- | editors/code/src/commands.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands.ts b/editors/code/src/commands.ts index 5606b6e9e..0e78f5101 100644 --- a/editors/code/src/commands.ts +++ b/editors/code/src/commands.ts | |||
@@ -158,7 +158,7 @@ export function ssr(ctx: Ctx): Cmd { | |||
158 | 158 | ||
159 | const options: vscode.InputBoxOptions = { | 159 | const options: vscode.InputBoxOptions = { |
160 | value: "() ==>> ()", | 160 | value: "() ==>> ()", |
161 | prompt: "Enter request, for example 'Foo($a:expr) ==> Foo::new($a)' ", | 161 | prompt: "Enter request, for example 'Foo($a) ==> Foo::new($a)' ", |
162 | validateInput: async (x: string) => { | 162 | validateInput: async (x: string) => { |
163 | try { | 163 | try { |
164 | await client.sendRequest(ra.ssr, { query: x, parseOnly: true }); | 164 | await client.sendRequest(ra.ssr, { query: x, parseOnly: true }); |