From f09b6f63dd4cb116ef819d30a803302eca2a0463 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Sat, 20 Jul 2019 18:25:53 +0300 Subject: [PATCH] fmt --- Forms.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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. //