mirror of
https://github.com/cheat/cheat.git
synced 2024-11-16 08:58:28 +01:00
85f5ae8ec7
Make various lint corrections in order to appease `staticcheck`.
8 lines
156 B
Go
8 lines
156 B
Go
package display
|
|
|
|
import "fmt"
|
|
|
|
// Underline returns an underlined string
|
|
func Underline(str string) string {
|
|
return fmt.Sprintf("\033[4m%s\033[0m", str)
|
|
}
|