Skip to content

Commit 59cb6a9

Browse files
committed
Fix delimiter in SSR example
1 parent d134a81 commit 59cb6a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editors/code/src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ export function ssr(ctx: Ctx): Cmd {
195195

196196
const options: vscode.InputBoxOptions = {
197197
value: "() ==>> ()",
198-
prompt: "Enter request, for example 'Foo($a) ==> Foo::new($a)' ",
198+
prompt: "Enter request, for example 'Foo($a) ==>> Foo::new($a)' ",
199199
validateInput: async (x: string) => {
200200
try {
201201
await client.sendRequest(ra.ssr, {

0 commit comments

Comments
 (0)