5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 20:39:34 +08:00

Update application-development.mdx (#1682)

This commit is contained in:
Sam Hennessy 2022-08-01 17:59:40 +09:00 committed by GitHub
parent 3d24a9b4c4
commit cf985cacee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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