From a94a2d46d087f99b1b19bc6b8ad4b95d4dbec26d Mon Sep 17 00:00:00 2001 From: cosven Date: Mon, 15 Jan 2018 14:55:36 +0800 Subject: [PATCH] use single quote in readme.rst As we use single quote in sanic package, we may be supposed to use single quote in readme also? --- README.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 10bc8920..7f8ba439 100644 --- a/README.rst +++ b/README.rst @@ -21,12 +21,12 @@ Hello World Example app = Sanic() - @app.route("/") + @app.route('/') async def test(request): - return json({"hello": "world"}) + return json({'hello': 'world'}) - if __name__ == "__main__": - app.run(host="0.0.0.0", port=8000) + if __name__ == '__main__': + app.run(host='0.0.0.0', port=8000) Installation ------------