docs: fix typo

The previous example was wrong and would result in the following
compiler error:
error (type) is not an expression

Just a simple typo, I've changed it to err to correctly reference the
function scoped variable named err.
This commit is contained in:
Dakota Walsh 2022-08-27 19:03:40 +12:00 committed by Christian Muehlhaeuser
parent bb241ceb8b
commit f905b97756
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ func Exec(c ExecCommand, fn ExecCallback) Cmd {
// c := exec.Command("vim", "file.txt")
//
// cmd := ExecProcess(c, func(err error) Msg {
// return VimFinishedMsg{err: error}
// return VimFinishedMsg{err: err}
// })
//
// Or, if you don't care about errors, you could simply: