Fix return value int Init() in standalone basics tutorial too

This commit is contained in:
Christian Rocha
2020-10-17 09:46:22 -04:00
parent 6638145bd7
commit 413776f017

View File

@@ -71,7 +71,7 @@ var initialModel = model{
func (m model) Init() tea.Cmd {
// Just return `nil`, which means "no I/O right now, please."
return m, nil
return nil
}
```