diff --git a/Forms.md b/Forms.md index 1786132..a0cc313 100644 --- a/Forms.md +++ b/Forms.md @@ -75,7 +75,8 @@ PostValues(name string) []string // FormFile returns the first uploaded file that received from the client. // // The default form's memory maximum size is 32MB, it can be changed by the -// `iris.WithPostMaxMemory` configurator at main configuration passed on `app.Run`'s second argument. +// `iris.WithPostMaxMemory` configurator at +// main configuration passed on `app.Run`'s second argument. FormFile(key string) (multipart.File, *multipart.FileHeader, error) ```