aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-09-15 14:18:49 +0100
committerGitHub <[email protected]>2020-09-15 14:18:49 +0100
commitf514965c519521246696365e3ca2227c31d3cf08 (patch)
tree2bae290b1a5b85d1721f9395d938e766ec72aa6b
parent7ba578ab1413505e960dda305cc322a29bc00ab3 (diff)
parent59cb6a9b31d5f6d55e89b1e7d8e2fb4b09afa6f5 (diff)
Merge #6006
6006: Fix delimiter in SSR example r=jonas-schievink a=lnicola Co-authored-by: LaurenČ›iu Nicola <[email protected]>
-rw-r--r--editors/code/src/commands.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands.ts b/editors/code/src/commands.ts
index 69f2836ad..4321de244 100644
--- a/editors/code/src/commands.ts
+++ b/editors/code/src/commands.ts
@@ -195,7 +195,7 @@ export function ssr(ctx: Ctx): Cmd {
195 195
196 const options: vscode.InputBoxOptions = { 196 const options: vscode.InputBoxOptions = {
197 value: "() ==>> ()", 197 value: "() ==>> ()",
198 prompt: "Enter request, for example 'Foo($a) ==> Foo::new($a)' ", 198 prompt: "Enter request, for example 'Foo($a) ==>> Foo::new($a)' ",
199 validateInput: async (x: string) => { 199 validateInput: async (x: string) => {
200 try { 200 try {
201 await client.sendRequest(ra.ssr, { 201 await client.sendRequest(ra.ssr, {