docs: fixed mentions to exec.Command

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos A Becker 2022-05-16 12:59:38 -03:00 committed by Christian Rocha
parent d301ee0405
commit a5f28a3a04
1 changed files with 2 additions and 2 deletions

4
tea.go
View File

@ -251,9 +251,9 @@ func HideCursor() Msg {
// Program resumes. It's useful for spawning other interactive applications
// such as editors and shells from within a Program.
//
// To produce the command, pass an *exec.Command and a function which returns
// To produce the command, pass an ExecCommand and a function which returns
// a message containing the error which may have occurred when running the
// *exec.Command.
// ExecCommand.
//
// type VimFinishedMsg struct { err error }
//