diff --git a/Forms.md b/Forms.md index a9639bc..1786132 100644 --- a/Forms.md +++ b/Forms.md @@ -13,7 +13,8 @@ FormValue(name string) string // field's query parameters and the POST or PUT form data. // // 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. // // NOTE: A check for nil is necessary. FormValues() map[string][]string @@ -68,7 +69,8 @@ PostValueBool(name string) (bool, error) // or PUT body parameters based on a "name" as a string slice. // // 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. PostValues(name string) []string // FormFile returns the first uploaded file that received from the client. //