Fixed syntax error in esp_http_server.rst

Merges: https://github.com/espressif/esp-idf/pull/5021
This commit is contained in:
morsisko
2020-03-29 15:53:58 +02:00
committed by bot
parent 4a005a02f9
commit 9759aa4ad2
2 changed files with 2 additions and 2 deletions
@@ -35,7 +35,7 @@ Application Example
* as well be any binary data (needs type casting).
* In case of string data, null termination will be absent, and
* content length would give length of string */
char[100] content;
char content[100];
/* Truncate if content length larger than the buffer */
size_t recv_size = MIN(req->content_len, sizeof(content));