diff options
author | Laurențiu Nicola <[email protected]> | 2020-09-15 12:32:56 +0100 |
---|---|---|
committer | Laurențiu Nicola <[email protected]> | 2020-09-15 12:32:56 +0100 |
commit | 59cb6a9b31d5f6d55e89b1e7d8e2fb4b09afa6f5 (patch) | |
tree | b4c40fe87f3a2458743029dc1c61ea210d930b50 /editors | |
parent | d134a810377d18e59508c41db839ef440ebde9fe (diff) |
Fix delimiter in SSR example
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, { |