Update application-development.mdx (#1682)

This commit is contained in:
Sam Hennessy
2022-08-01 18:59:40 +10:00
committed by GitHub
parent 3d24a9b4c4
commit cf985cacee
@@ -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)
}
```