Skip to content

Commit a83c4c0

Browse files
committed
Remove extra space
fmt.Println() already separates its operands with spaces.
1 parent bc4852b commit a83c4c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/swag/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ func initAction(ctx *cli.Context) error {
279279
}
280280

281281
func main() {
282-
fmt.Println("Swag version: ", swag.Version)
282+
fmt.Println("Swag version:", swag.Version)
283283
app := cli.NewApp()
284284
app.Version = swag.Version
285285
app.Usage = "Automatically generate RESTful API documentation with Swagger 2.0 for Go."

0 commit comments

Comments
 (0)