From c0f1e028a64d3aeb399a65b9c44eb512f21da62a Mon Sep 17 00:00:00 2001 From: devsaurus Date: Sun, 15 May 2016 17:08:45 +0200 Subject: [PATCH] fix link to net module --- docs/en/modules/http.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/modules/http.md b/docs/en/modules/http.md index 9214612c..a0c106c3 100644 --- a/docs/en/modules/http.md +++ b/docs/en/modules/http.md @@ -3,7 +3,7 @@ | :----- | :-------------------- | :---------- | :------ | | 2016-01-15 | [esphttpclient](https://github.com/Caerbannog/esphttpclient) / [Vowstar](https://github.com/vowstar) | [Vowstar](https://github.com/vowstar) | [http.c](../../../app/modules/http.c)| -Basic HTTP *client* module that provides an interface to do GET/POST/PUT/DELETE over HTTP(S), as well as customized requests. Due to the memory constraints on ESP8266, the supported page/body size is limited by available memory. Attempting to receive pages larger than this will fail. If larger page/body sizes are necessary, consider using [`net.createConnection()`](#netcreateconnection) and stream in the data. +Basic HTTP *client* module that provides an interface to do GET/POST/PUT/DELETE over HTTP(S), as well as customized requests. Due to the memory constraints on ESP8266, the supported page/body size is limited by available memory. Attempting to receive pages larger than this will fail. If larger page/body sizes are necessary, consider using [`net.createConnection()`](net.md#netcreateconnection) and stream in the data. !!! note "Note:"