docs(readme): fix multiple file example

This commit is contained in:
Eason Lin 2017-07-15 01:11:58 +08:00
parent fe4d405108
commit 30de50f881

View File

@ -305,7 +305,7 @@ func main() {
for _, file := range files {
log.Println(file.Filename)
}
c.String(http.StatusOK, fmt.Printf("%d files uploaded!", len(files)))
c.String(http.StatusOK, fmt.Sprintf("%d files uploaded!", len(files)))
})
router.Run(":8080")
}