From a5f28a3a04bb4f9c5e31aa1fd26e7f986a4a1490 Mon Sep 17 00:00:00 2001 From: Carlos A Becker Date: Mon, 16 May 2022 12:59:38 -0300 Subject: [PATCH] docs: fixed mentions to exec.Command Signed-off-by: Carlos A Becker --- tea.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tea.go b/tea.go index dd744a4..d986553 100644 --- a/tea.go +++ b/tea.go @@ -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 } //