From 833845c99a081e88af191c1999c7b273fde061a5 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Sat, 20 Jul 2019 18:26:33 +0300 Subject: [PATCH] fmt --- Forms.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) ```