From 5d9df01c21603dff098ab02802083fb9b7f85624 Mon Sep 17 00:00:00 2001 From: CodeLingo Team <48107184+CodeLingoTeam@users.noreply.github.com> Date: Wed, 13 Mar 2019 19:32:51 +1300 Subject: [PATCH] Fix function comments based on best practices from Effective Go (#181) Signed-off-by: CodeLingo Bot --- terminal/output.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terminal/output.go b/terminal/output.go index e401c373..6fe11c08 100644 --- a/terminal/output.go +++ b/terminal/output.go @@ -6,13 +6,13 @@ import ( "io" ) -// Returns special stdout, which converts escape sequences to Windows API calls +// NewAnsiStdout returns special stdout, which converts escape sequences to Windows API calls // on Windows environment. func NewAnsiStdout(out FileWriter) io.Writer { return out } -// Returns special stderr, which converts escape sequences to Windows API calls +// NewAnsiStderr returns special stderr, which converts escape sequences to Windows API calls // on Windows environment. func NewAnsiStderr(out FileWriter) io.Writer { return out