Skip to content

Commit

Permalink
Fixed linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jleni authored and spf13 committed Jun 7, 2019
1 parent 4a716d1 commit 0ea93dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions command.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,12 +217,12 @@ func (c *Command) SetOutput(output io.Writer) {
// SetOut sets the destination for usage messages.
// If newOut is nil, os.Stdout is used.
func (c *Command) SetOut(newOut io.Writer) {
c.outWriter = newOut
c.outWriter = newOut
}

// SetErr sets the destination for error messages.
// If newErr is nil, os.Stderr is used.
func (c *Command) SetErr(newErr io.Writer) {
func (c *Command) SetErr(newErr io.Writer) {
c.errWriter = newErr
}

Expand Down

0 comments on commit 0ea93dd

Please sign in to comment.