Skip to content

Commit

Permalink
Remove extra space
Browse files Browse the repository at this point in the history
fmt.Println() already separates its operands with spaces.
  • Loading branch information
greg0ire committed Dec 17, 2024
1 parent bc4852b commit a83c4c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/swag/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ func initAction(ctx *cli.Context) error {
}

func main() {
fmt.Println("Swag version: ", swag.Version)
fmt.Println("Swag version:", swag.Version)
app := cli.NewApp()
app.Version = swag.Version
app.Usage = "Automatically generate RESTful API documentation with Swagger 2.0 for Go."
Expand Down

0 comments on commit a83c4c0

Please sign in to comment.