Skip to content

Commit

Permalink
removed new line from upper and lower
Browse files Browse the repository at this point in the history
  • Loading branch information
mhristof committed Jul 24, 2020
1 parent 1352d9d commit c0697c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/lower.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var (
if err != nil {
panic(err)
}
fmt.Println(strings.ToLower(string(data)))
fmt.Print(strings.ToLower(string(data)))
},
}
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/upper.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var (
if err != nil {
panic(err)
}
fmt.Println(strings.ToUpper(string(data)))
fmt.Print(strings.ToUpper(string(data)))
},
}
)
Expand Down

0 comments on commit c0697c5

Please sign in to comment.