Compare commits

...

1 Commits

Author SHA1 Message Date
f4eb2c5c3e Small typo 2022-01-06 11:47:17 +00:00

View File

@@ -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)
}
```