From baf99fe7df79ce425836f2a0fd0d31f989ceed02 Mon Sep 17 00:00:00 2001 From: "Yuhesh Pandian.P.J" Date: Mon, 1 Jan 2024 19:58:39 +0530 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Update=20README.rst?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 5f513b20..8fb19f7a 100644 --- a/README.rst +++ b/README.rst @@ -22,7 +22,7 @@ community that make adding new functionality easy. **Install & Update** using `pip`_: -.. code-block:: text +.. code-block:: bash $ pip install -U Flask @@ -34,7 +34,7 @@ community that make adding new functionality easy. .. code-block:: python - # save this as app.py + # Save this as app.py from flask import Flask app = Flask(__name__) @@ -43,7 +43,7 @@ community that make adding new functionality easy. def hello(): return "Hello, World!" -.. code-block:: text +.. code-block:: bash $ flask run * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)