add func comment to warn future users that it does not exit

pull/17965/head
Predrag Rogic 2024-01-17 21:42:47 +00:00
parent 5e5f17cf67
commit 0d81736fec
No known key found for this signature in database
GPG Key ID: F1FF5748C4855229
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ func SuccessT(format string, a ...V) {
Step(style.Success, format, a...) Step(style.Success, format, a...)
} }
// FatalT is a shortcut for writing a templated fatal message to stderr // FatalT does Not Exit - it is only a shortcut for writing a templated fatal message to stderr.
func FatalT(format string, a ...V) { func FatalT(format string, a ...V) {
ErrT(style.Fatal, format, a...) ErrT(style.Fatal, format, a...)
} }