From 1252a61479e7835ce496c4095be03f297d558cc0 Mon Sep 17 00:00:00 2001 From: cpq Date: Mon, 14 Dec 2020 09:36:46 +0000 Subject: [PATCH] More docs --- docs/README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/README.md b/docs/README.md index 09a49db5..030fdbb8 100644 --- a/docs/README.md +++ b/docs/README.md @@ -714,9 +714,8 @@ int mg_http_upload(struct mg_connection *, struct mg_http_message *hm, Handle file upload. See [file upload example](https://github.com/cesanta/mongoose/tree/master/examples/file-upload). -This function sets up a built-in event handler that expects a series of -POST requests with file data. POST requests should have `name` and `offset` -query string parameters set: +This function expects a series of POST requests with file data. POST requests +should have `name` and `offset` query string parameters set: ```text POST /whatever_uri?name=myfile.txt&offset=1234 HTTP/1.0