diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-09-15 14:18:49 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-09-15 14:18:49 +0100 |
commit | f514965c519521246696365e3ca2227c31d3cf08 (patch) | |
tree | 2bae290b1a5b85d1721f9395d938e766ec72aa6b /editors | |
parent | 7ba578ab1413505e960dda305cc322a29bc00ab3 (diff) | |
parent | 59cb6a9b31d5f6d55e89b1e7d8e2fb4b09afa6f5 (diff) |
Merge #6006
6006: Fix delimiter in SSR example r=jonas-schievink a=lnicola
Co-authored-by: Laurențiu Nicola <[email protected]>
Diffstat (limited to 'editors')
-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 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, { |