From 1f119f16432125468ed3becec49e0de53ec6b98c Mon Sep 17 00:00:00 2001 From: Antoni Kepinski Date: Fri, 21 Feb 2020 00:01:46 +0100 Subject: [PATCH] docs: Update information about `req.body` type in v3.x release --- docs/v3-LIMITS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/v3-LIMITS.md b/docs/v3-LIMITS.md index 0913c5643..3e630e910 100644 --- a/docs/v3-LIMITS.md +++ b/docs/v3-LIMITS.md @@ -12,7 +12,7 @@ Known differences - For convenience, `res.body` is a Node.js [Readable stream][readable-stream], so decoding can be handled independently. -- Similarly, `req.body` can either be `null`, a string, a buffer or a Readable stream. +- Similarly, `req.body` can either be `null`, a buffer or a Readable stream. - Also, you can handle rejected fetch requests through checking `err.type` and `err.code`. See [ERROR-HANDLING.md][] for more info.