From f4eb2c5c3e1ce8fa80012554ed35f7bee5e8df5a Mon Sep 17 00:00:00 2001 From: Tai Groot Date: Thu, 6 Jan 2022 11:47:17 +0000 Subject: [PATCH] Small typo --- website/docs/guides/application-development.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/guides/application-development.mdx b/website/docs/guides/application-development.mdx index f9649614..af3ccbd0 100644 --- a/website/docs/guides/application-development.mdx +++ b/website/docs/guides/application-development.mdx @@ -83,7 +83,7 @@ func (a *App) shutdown(ctx context.Context) { } func (a *App) Greet(name string) string { - return fmt.Printf("Hello %s!", name) + return fmt.Sprintf("Hello %s!", name) } ```