From 91a5fb28863bdd9b7497b32e4f446447ce0271f5 Mon Sep 17 00:00:00 2001 From: Javier Velilla Date: Fri, 10 Feb 2017 19:37:35 -0300 Subject: [PATCH] Cosmetic --- doc/workbook/handling_request/form.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/workbook/handling_request/form.md b/doc/workbook/handling_request/form.md index c19bec47..8c07d049 100644 --- a/doc/workbook/handling_request/form.md +++ b/doc/workbook/handling_request/form.md @@ -259,9 +259,9 @@ WSF_REQUEST.uploaded_files: ITERABLE [WSF_UPLOADED_FILE] --| error: if /= 0 , there was an error : TODO ... --| size: size of the file given by the http request ``` -to iterate over the uploaded files if any, and the details in the class [WSF_UPLOADED_FILE]. +to iterate over the uploaded files if any, and the details in the class **WSF_UPLOADED_FILE**. -The following snipet code show how to work with Uploaded files using EWF [WSF_REQUEST] class, in the example +The following snipet code show how to work with Uploaded files using EWF **WSF_REQUEST** class, in the example we build a simple html answer with basic information, if there is not uploaded files, we send a 400 status code and a simple message.