From 09acd64ba1772f0c27c2623fc3db1a613edd2dbd Mon Sep 17 00:00:00 2001 From: "G.Ted" Date: Tue, 11 Jun 2019 11:09:29 +0900 Subject: [PATCH] Fix typo in request_data.md, docs. --- docs/sanic/request_data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sanic/request_data.md b/docs/sanic/request_data.md index 065d8e13..885cde71 100644 --- a/docs/sanic/request_data.md +++ b/docs/sanic/request_data.md @@ -193,7 +193,7 @@ The output will be: { "parsed": true, "url": "http:\/\/0.0.0.0:8000\/query_string?test1=value1&test2=&test3=value3", - "args_with_blank_values": {"test1": ["value1""], "test2": "", "test3": ["value3"]}, + "args_with_blank_values": {"test1": ["value1"], "test2": "", "test3": ["value3"]}, "query_string": "test1=value1&test2=&test3=value3" } ```