diff options
| author | Pavan Kumar Sunkara <pavan.sss1991@gmail.com> | 2020-04-24 21:57:10 +0200 |
|---|---|---|
| committer | Pavan Kumar Sunkara <pavan.sss1991@gmail.com> | 2020-05-14 11:14:46 +0200 |
| commit | 9f0a7eb97b4e047cebbe51ffd6f9e2092dd63e00 (patch) | |
| tree | e8378dc70fe7882aafb0909d37f433aa43ddcd9c /editors/code | |
| parent | 530a35f3f949d70c53accede35fa561429585bc1 (diff) | |
| download | rust-9f0a7eb97b4e047cebbe51ffd6f9e2092dd63e00.tar.gz rust-9f0a7eb97b4e047cebbe51ffd6f9e2092dd63e00.zip | |
Make some stuff public so that they can be reused by other tools
Diffstat (limited to 'editors/code')
| -rw-r--r-- | editors/code/src/commands/ssr.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands/ssr.ts b/editors/code/src/commands/ssr.ts index 6fee051fdf6..4ef8cdf04f7 100644 --- a/editors/code/src/commands/ssr.ts +++ b/editors/code/src/commands/ssr.ts @@ -11,7 +11,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:expr) ==> Foo::new($a)' ", validateInput: async (x: string) => { try { await client.sendRequest(ra.ssr, { query: x, parseOnly: true }); |
