From bd6956bd00dc2d0f26b409c6eec0c869936352d5 Mon Sep 17 00:00:00 2001 From: "Sakthipriyan Vairamani (thefourtheye)" Date: Sun, 1 Oct 2017 07:33:06 +0530 Subject: [PATCH] doc: change encoding to decoding As per the example, `querystring.parse` actually does URL decoding, not encoding. --- doc/api/deprecations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index c70f494c6ddada..d15f4978913489 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -675,7 +675,7 @@ querystring.parse(str, '\n', '='); ``` *Note*: This function is not completely equivalent to `querystring.parse()`. One -difference is that `querystring.parse()` does url encoding: +difference is that `querystring.parse()` does url decoding: ```sh > querystring.parse('%E5%A5%BD=1', '\n', '=');