From 34e4ee095d12986a2cef5ddb9aeb3b8cfcfea17c Mon Sep 17 00:00:00 2001 From: Fatih Arslan Date: Tue, 3 Jan 2017 19:06:30 +0300 Subject: [PATCH] Fix doc.go indentation --- doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc.go b/doc.go index c3b4d31..1e57812 100644 --- a/doc.go +++ b/doc.go @@ -57,7 +57,7 @@ You can create PrintXxx functions to simplify even more: You can also FprintXxx functions to pass your own io.Writer: blue := color.New(FgBlue).FprintfFunc() - blue(myWriter, "important notice: %s", stars) + blue(myWriter, "important notice: %s", stars) // Mix up with multiple attributes success := color.New(color.Bold, color.FgGreen).FprintlnFunc()