Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix green copypasta #484

Merged
merged 1 commit into from Jul 5, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions colors/colors.go
Expand Up @@ -42,27 +42,27 @@ func Green(s interface{}) string {
return colorize(s, green)
}

// Red will accept an interface and return a colorized green string.
// Red will accept an interface and return a colorized red string.
func Red(s interface{}) string {
return colorize(s, red)
}

// Cyan will accept an interface and return a colorized green string.
// Cyan will accept an interface and return a colorized cyan string.
func Cyan(s interface{}) string {
return colorize(s, cyan)
}

// Black will accept an interface and return a colorized green string.
// Black will accept an interface and return a colorized black string.
func Black(s interface{}) string {
return colorize(s, black)
}

// Yellow will accept an interface and return a colorized green string.
// Yellow will accept an interface and return a colorized yellow string.
func Yellow(s interface{}) string {
return colorize(s, yellow)
}

// White will accept an interface and return a colorized green string.
// White will accept an interface and return a colorized white string.
func White(s interface{}) string {
return colorize(s, white)
}